/* ==========================================
   Deepak Cyber Cafe - Premium Design System
   Bihar CSC Portal | Light Blue Theme
   ========================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Noto+Sans+Devanagari:wght@400;500;600;700&display=swap');

:root {
  --primary: #1A47A1;
  --primary-light: #2196F3;
  --primary-dark: #0D2B6B;
  --secondary: #0D47A1;
  --accent: #1976D2;
  --accent-light: #E3F2FD;
  --success: #2E7D32;
  --success-light: #E8F5E9;
  --warning: #F57F17;
  --warning-light: #FFF9C4;
  --danger: #C62828;
  --danger-light: #FFEBEE;
  --info: #0277BD;
  --info-light: #E1F5FE;
  --white: #FFFFFF;
  --bg: #F0F4F8;
  --bg-light: #F8FAFC;
  --sidebar: #1A2744;
  --sidebar-dark: #111D38;
  --sidebar-active: #1565C0;
  --text: #1E293B;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --border: #E2E8F0;
  --border-light: #F1F5F9;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow: 0 4px 12px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 30px rgba(0,0,0,.12);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: .2s ease;
}

* { margin:0; padding:0; box-sizing:border-box; }
body {
  font-family: 'Inter', 'Noto Sans Devanagari', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 14px;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; }

/* ==========================================
   TOP INFO BAR
   ========================================== */
.top-bar {
  background: #fdfdfd;
  color: #444;
  padding: .65rem 0;
  font-size: .75rem;
  border-bottom: 1px solid #eee;
  font-weight: 500;
}
.top-bar i { color: var(--primary); font-size: 1rem; margin-right: .4rem; }
.top-bar .info-item { display: flex; align-items: center; margin-right: 1.5rem; }
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar a { color: rgba(255,255,255,.8); }
.top-bar a:hover { color: #fff; }

/* ==========================================
   MAIN HEADER
   ========================================== */
header.main-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
header.main-header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .7rem 0;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: 1.4rem;
  font-weight: 850;
  color: var(--primary-dark);
}
.logo-icon {
  width: 48px; height: 48px;
  background: #fff;
  border: 2px solid var(--primary-dark);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-dark);
  font-size: 1.6rem;
}
.logo-text { line-height: 1.1; }
.logo-name { display: block; font-size: 1.4rem; }
.logo-sub { display: block; font-size: 0.9rem; font-weight: 600; color: #333; }
.nav-menu { display: flex; align-items: center; gap: .2rem; }
.nav-menu .nav-item { position: relative; }
.nav-menu .nav-link {
  display: flex; align-items: center; gap: .3rem;
  padding: .5rem .75rem;
  font-weight: 500; font-size: .85rem; color: var(--text);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-menu .nav-link:hover, .nav-menu .nav-link.active {
  color: var(--primary);
  background: var(--accent-light);
}
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-sm); box-shadow: var(--shadow-lg);
  min-width: 220px; padding: .5rem; z-index: 999;
  opacity: 0; pointer-events: none; transform: translateY(-8px);
  transition: var(--transition);
}
.nav-item:hover .dropdown-menu { opacity: 1; pointer-events: all; transform: translateY(0); }
.dropdown-menu a {
  display: flex; align-items: center; gap: .5rem;
  padding: .5rem .75rem; border-radius: 6px;
  font-size: .85rem; color: var(--text);
}
.dropdown-menu a:hover { background: var(--accent-light); color: var(--primary); }

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  padding: .55rem 1.25rem; border-radius: var(--radius-sm);
  font-weight: 600; font-size: .85rem; cursor: pointer;
  border: none; transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
}
.btn-primary:hover { opacity: .9; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline {
  border: 1.5px solid var(--primary);
  color: var(--primary); background: transparent;
}
.btn-outline:hover { background: var(--accent-light); }
.btn-success { background: var(--success); color: #fff; }
.btn-success:hover { opacity:.9; }
.btn-danger { background: var(--danger); color: #fff; }
.btn-warning { background: var(--warning); color: #fff; }
.btn-sm { padding: .35rem .75rem; font-size: .78rem; }
.btn-lg { padding: .75rem 1.75rem; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-icon { padding: .5rem; border-radius: var(--radius-sm); }

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
  background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 60%, #BFDBFE 100%);
  padding: 4rem 0;
  overflow: hidden;
  position: relative;
}
.hero-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231565C0' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index:1; }
.hero-title {
  font-size: 2.8rem; font-weight: 900; line-height: 1.2;
  color: var(--primary-dark); margin-bottom: 1rem;
}
.hero-subtitle { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 2rem; }
.hero-badges { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: #fff; border: 1px solid var(--border);
  padding: .4rem .9rem; border-radius: 50px; font-size: .8rem; font-weight: 600;
  box-shadow: var(--shadow-sm); color: var(--text);
}
.hero-badge i { color: var(--primary); }
.hero-features {
  display: flex; gap: 2rem; margin-top: 2rem;
  padding-top: 2rem; border-top: 1px solid rgba(21,101,192,.15);
}
.hero-feat { display: flex; align-items: center; gap: .5rem; font-size: .8rem; font-weight: 500; }
.hero-feat i { color: var(--primary); font-size: 1.1rem; }
.hero-services-card {
  background: #fff; border-radius: var(--radius); padding: 1.5rem;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
}
.hero-services-card h6 {
  background: var(--primary); color: #fff;
  padding: .6rem 1rem; border-radius: var(--radius-sm);
  font-size: .85rem; margin: -1.5rem -1.5rem 1rem -1.5rem;
  border-radius: var(--radius) var(--radius) 0 0;
}
.quick-service-item {
  display: flex; align-items: center; gap: .5rem;
  padding: .45rem 0; border-bottom: 1px solid var(--border-light);
  font-size: .82rem; color: var(--text);
}
.quick-service-item:last-child { border: none; }
.quick-service-item i { color: var(--primary); width: 18px; }
.quick-service-item:hover { color: var(--primary); }

/* ==========================================
   SERVICES GRID
   ========================================== */
.services-section { padding: 4rem 0; background: #fff; }
.section-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 2rem;
}
.section-title { font-size: 1.6rem; font-weight: 700; color: var(--text); }
.section-title span { color: var(--primary); }
.section-subtitle { color: var(--text-muted); margin-top: .25rem; font-size: .9rem; }
.section-divider {
  width: 50px; height: 3px;
  background: linear-gradient(to right, var(--primary), var(--accent));
  border-radius: 50px; margin-top: .5rem; margin-bottom: .25rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}
.service-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem 1rem;
  text-align: center; cursor: pointer;
  transition: var(--transition); position: relative;
  overflow: hidden;
}
.service-card::before {
  content:''; position:absolute; inset:0;
  background: var(--accent-light); opacity:0;
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-4px); border-color: var(--primary); box-shadow: var(--shadow); }
.service-card:hover::before { opacity: 1; }
.service-icon-wrap {
  width: 56px; height: 56px; border-radius: var(--radius);
  background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto .75rem; font-size: 1.5rem; color: var(--primary);
  position: relative; z-index: 1;
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap {
  background: var(--primary); color: #fff;
}
.service-card h6 {
  font-size: .78rem; font-weight: 600; color: var(--text);
  position: relative; z-index: 1; line-height: 1.4;
}
.service-card p { font-size: .72rem; color: var(--text-muted); margin-top: .2rem; position: relative; z-index: 1; }
.service-card .service-price {
  margin-top: .5rem; font-weight: 700; color: var(--primary);
  font-size: .8rem; position: relative; z-index: 1;
}

/* ==========================================
   STATS COUNTER SECTION
   ========================================== */
.stats-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
}
.stat-card { text-align: center; }
.stat-number {
  font-size: 2.8rem; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, #fff, #BFDBFE);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label { font-size: .85rem; opacity: .8; margin-top: .5rem; }

/* ==========================================
   CARDS / DASHBOARD
   ========================================== */
.card {
  background: #fff; border-radius: var(--radius);
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.card-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 1.25rem; border-bottom: 1px solid var(--border-light);
}
.card-title { font-size: .95rem; font-weight: 700; color: var(--text); }
.card-body { padding: 1.25rem; }
.card-footer { padding: 1rem 1.25rem; border-top: 1px solid var(--border-light); }

/* Stat Widget Cards */
.stat-widget {
  background: #fff; border-radius: var(--radius); padding: 1.25rem;
  border: 1px solid var(--border); display: flex; align-items: center; gap: 1rem;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.stat-widget:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.stat-widget .stat-icon {
  width: 54px; height: 54px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.stat-widget .stat-info { flex: 1; min-width: 0; }
.stat-widget .stat-value { font-size: 1.6rem; font-weight: 800; line-height: 1; color: var(--text); }
.stat-widget .stat-label { font-size: .75rem; color: var(--text-muted); margin-top: .25rem; }
.stat-widget .stat-change { font-size: .72rem; font-weight: 600; margin-top: .3rem; }
.stat-change.positive { color: var(--success); }
.stat-change.negative { color: var(--danger); }

/* Color variants for stat icons */
.icon-blue { background: var(--accent-light); color: var(--primary); }
.icon-green { background: var(--success-light); color: var(--success); }
.icon-orange { background: #FFF3E0; color: #E65100; }
.icon-red { background: var(--danger-light); color: var(--danger); }
.icon-purple { background: #F3E5F5; color: #6A1B9A; }
.icon-teal { background: #E0F2F1; color: #00695C; }

/* ==========================================
   SIDEBAR NAVIGATION (ALL PANELS)
   ========================================== */
.app-sidebar {
  width: 260px; min-height: 100vh;
  background: var(--sidebar); color: #fff;
  position: fixed; left: 0; top: 0; bottom: 0;
  overflow-y: auto; z-index: 100;
  display: flex; flex-direction: column;
  transition: var(--transition);
}
.sidebar-brand {
  padding: 1.25rem; display: flex; align-items: center; gap: .75rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.sidebar-brand .brand-icon {
  width: 36px; height: 36px; background: var(--primary-light);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.sidebar-brand .brand-name { font-weight: 700; font-size: .95rem; line-height: 1.3; }
.sidebar-brand .brand-sub { font-size: .7rem; opacity: .6; }
.sidebar-nav { flex: 1; padding: .75rem 0; }
.sidebar-section { padding: .35rem .85rem .15rem; font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; opacity: .45; color: #CBD5E1; margin-top: .5rem; }
.sidebar-item { margin: .1rem .5rem; }
.sidebar-link {
  display: flex; align-items: center; gap: .65rem;
  padding: .6rem .85rem; border-radius: var(--radius-sm);
  font-size: .82rem; font-weight: 500; color: rgba(255,255,255,.75);
  transition: var(--transition); cursor: pointer;
}
.sidebar-link:hover { background: rgba(255,255,255,.08); color: #fff; }
.sidebar-link.active { background: var(--primary); color: #fff; }
.sidebar-link i { width: 18px; text-align: center; font-size: .95rem; }
.sidebar-link .sidebar-badge {
  margin-left: auto; background: var(--danger);
  color: #fff; font-size: .65rem; padding: .1rem .4rem;
  border-radius: 50px; font-weight: 700;
}
.sidebar-link .chevron { margin-left: auto; font-size: .75rem; transition: var(--transition); }
.sidebar-sub { display: none; padding-left: 1rem; }
.sidebar-sub.open { display: block; }
.sidebar-sub .sidebar-link { font-size: .78rem; padding: .4rem .85rem; color: rgba(255,255,255,.6); }
.sidebar-footer {
  padding: 1rem; border-top: 1px solid rgba(255,255,255,.08);
  font-size: .8rem; color: rgba(255,255,255,.6);
}
.sidebar-footer a { color: rgba(255,255,255,.7); display: block; padding: .4rem .5rem; border-radius: 6px; }
.sidebar-footer a:hover { background: rgba(255,255,255,.08); color: #fff; }

/* ==========================================
   MAIN CONTENT AREA
   ========================================== */
.app-layout { display: flex; min-height: 100vh; }
.app-main { flex: 1; margin-left: 260px; display: flex; flex-direction: column; }
.app-topbar {
  background: #fff; border-bottom: 1px solid var(--border);
  padding: 0 1.5rem; height: 62px; display: flex;
  align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 99; box-shadow: var(--shadow-sm);
}
.page-title { font-size: 1.1rem; font-weight: 700; color: var(--text); }
.topbar-actions { display: flex; align-items: center; gap: .75rem; }
.topbar-btn {
  width: 38px; height: 38px; border-radius: var(--radius-sm);
  background: var(--bg-light); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; position: relative; transition: var(--transition);
}
.topbar-btn:hover { background: var(--accent-light); border-color: var(--primary); }
.topbar-btn .notif-dot {
  position: absolute; top: -2px; right: -2px;
  width: 16px; height: 16px; background: var(--danger);
  color: #fff; border-radius: 50%; font-size: .6rem;
  display: flex; align-items: center; justify-content: center;
}
.app-content { flex: 1; padding: 1.5rem; background: var(--bg); }

/* ==========================================
   TABLES
   ========================================== */
.table-wrapper { overflow-x: auto; }
table.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
  background: var(--bg-light); font-size: .75rem; text-transform: uppercase;
  letter-spacing: .04em; color: var(--text-muted); font-weight: 600;
  padding: .75rem 1rem; border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.data-table td { padding: .75rem 1rem; border-bottom: 1px solid var(--border-light); vertical-align: middle; font-size: .84rem; }
.data-table tr:last-child td { border: none; }
.data-table tbody tr:hover { background: var(--bg-light); }

/* ==========================================
   BADGES & STATUSES
   ========================================== */
.badge {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .25rem .65rem; border-radius: 50px; font-size: .72rem; font-weight: 700;
}
.badge-primary { background: #DBEAFE; color: var(--primary); }
.badge-success { background: var(--success-light); color: var(--success); }
.badge-warning { background: var(--warning-light); color: var(--warning); }
.badge-danger { background: var(--danger-light); color: var(--danger); }
.badge-info { background: var(--info-light); color: var(--info); }
.badge-secondary { background: var(--bg); color: var(--text-muted); }

/* ==========================================
   FORMS
   ========================================== */
.form-group { margin-bottom: 1rem; }
.form-label { display: block; font-size: .82rem; font-weight: 600; color: var(--text); margin-bottom: .4rem; }
.form-label .required { color: var(--danger); }
.form-control {
  width: 100%; padding: .6rem 1rem; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-size: .85rem; color: var(--text);
  background: #fff; transition: var(--transition); outline: none;
  font-family: inherit;
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(21,101,192,.12); }
.form-control::placeholder { color: var(--text-light); }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: calc(100% - 12px) center; padding-right: 2rem; }
.input-group { display: flex; align-items: stretch; }
.input-group-text {
  padding: .6rem .9rem; background: var(--bg-light);
  border: 1.5px solid var(--border); border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  color: var(--text-muted); font-size: .9rem;
}
.input-group .form-control { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.form-text { font-size: .75rem; color: var(--text-muted); margin-top: .25rem; }

/* ==========================================
   ALERTS
   ========================================== */
.alert {
  padding: .75rem 1rem; border-radius: var(--radius-sm);
  display: flex; align-items: flex-start; gap: .65rem; font-size: .85rem;
  border-left: 4px solid;
}
.alert-success { background: var(--success-light); color: var(--success); border-color: var(--success); }
.alert-danger { background: var(--danger-light); color: var(--danger); border-color: var(--danger); }
.alert-warning { background: var(--warning-light); color: var(--warning); border-color: var(--warning); }
.alert-info { background: var(--info-light); color: var(--info); border-color: var(--info); }

/* ==========================================
   FOOTER (PUBLIC SITE)
   ========================================== */
.site-footer {
  background: var(--sidebar); color: rgba(255,255,255,.8);
  padding: 3rem 0 1.5rem;
}
.footer-logo { display: flex; align-items: center; gap: .5rem; margin-bottom: 1rem; }
.footer-logo .logo-icon { background: var(--primary-light); }
.footer-logo span { color: #fff; font-size: 1.1rem; font-weight: 700; }
.footer-desc { font-size: .82rem; opacity: .75; line-height: 1.8; margin-bottom: 1.25rem; }
.footer-badge { display: inline-flex; align-items: center; gap: .4rem; background: rgba(255,255,255,.08); padding: .3rem .75rem; border-radius: 50px; font-size: .72rem; margin-right: .4rem; margin-bottom: .4rem; }
.footer-h5 { font-size: .85rem; font-weight: 700; color: #fff; margin-bottom: 1rem; letter-spacing: .03em; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: .4rem; }
.footer-links a { font-size: .8rem; opacity: .75; }
.footer-links a:hover { opacity: 1; color: var(--accent); }
.footer-contact-item { display: flex; align-items: center; gap: .5rem; font-size: .8rem; margin-bottom: .5rem; opacity: .8; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.25rem; margin-top: 2rem; display: flex; justify-content: space-between; align-items: center; font-size: .75rem; opacity: .6; }

/* ==========================================
   FLOATING WHATSAPP BUTTON
   ========================================== */
.wa-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 9999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: var(--transition); cursor: pointer; text-decoration: none;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,.5); }

/* ==========================================
   PAGE LOADER / SKELETON
   ========================================== */
@keyframes shimmer { 0%{background-position:-200px 0} 100%{background-position:calc(200px + 100%) 0} }
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 37%, #f0f0f0 63%);
  background-size: 400px 100%;
  animation: shimmer 1.4s ease infinite;
  border-radius: 4px;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
.container-full { width: 100%; padding: 0 4rem; margin: 0 auto; }
.container-fluid { padding: 0 1rem; }
.grid { display: grid; }
.g-2 { gap: .5rem; }
.g-3 { gap: .75rem; }
.g-4 { gap: 1rem; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.cols-6 { grid-template-columns: repeat(6, 1fr); }
.row { display: flex; flex-wrap: wrap; margin: 0 -0.5rem; column-gap: 0; }
.col { flex: 1; padding: 0 0.5rem; box-sizing: border-box; }
.col-auto { flex: 0 0 auto; padding: 0 0.5rem; box-sizing: border-box; }

/* Grid Columns */
.col-6 { flex: 0 0 50%; max-width: 50%; padding: 0 0.5rem; box-sizing: border-box; }
.col-12 { flex: 0 0 100%; max-width: 100%; padding: 0 0.5rem; box-sizing: border-box; }

/* Medium Devices (md) */
@media (min-width: 768px) {
  .col-md-3 { flex: 0 0 25%; max-width: 25%; padding: 0 0.5rem; box-sizing: border-box; }
  .col-md-5 { flex: 0 0 41.666667%; max-width: 41.666667%; padding: 0 0.5rem; box-sizing: border-box; }
  .col-md-6 { flex: 0 0 50%; max-width: 50%; padding: 0 0.5rem; box-sizing: border-box; }
  .col-md-7 { flex: 0 0 58.333333%; max-width: 58.333333%; padding: 0 0.5rem; box-sizing: border-box; }
  .col-md-12 { flex: 0 0 100%; max-width: 100%; padding: 0 0.5rem; box-sizing: border-box; }
}

/* Large Devices (lg) */
@media (min-width: 1024px) {
  .col-lg-3 { flex: 0 0 25%; max-width: 25%; padding: 0 0.5rem; box-sizing: border-box; }
  .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; padding: 0 0.5rem; box-sizing: border-box; }
  .col-lg-5 { flex: 0 0 41.666667%; max-width: 41.666667%; padding: 0 0.5rem; box-sizing: border-box; }
  .col-lg-6 { flex: 0 0 50%; max-width: 50%; padding: 0 0.5rem; box-sizing: border-box; }
  .col-lg-7 { flex: 0 0 58.333333%; max-width: 58.333333%; padding: 0 0.5rem; box-sizing: border-box; }
  .col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; padding: 0 0.5rem; box-sizing: border-box; }
}

/* Spacing Utilities */
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }

@media (max-width: 1024px) {
  .app-main { margin-left: 0; }
  .app-sidebar { transform: translateX(-100%); }
  .app-sidebar.open { transform: translateX(0); }
  .hero-title { font-size: 2rem; }
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .cols-6 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .hero-features { flex-wrap: wrap; gap: 1rem; }
  .hero-title { font-size: 1.6rem; }
  .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .cols-6 { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .hero-title { font-size: 1.4rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
}

/* ==========================================
   DEEPAK CYBER CAFE NEW PREMIUM STYLES
   ========================================== */

/* Top Bar Styles */
.top-bar-new {
  background: linear-gradient(90deg, #1A47A1 0%, #0F3C9B 100%);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  padding: 0.6rem 0;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.top-bar-new .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar-new a {
  color: rgba(255,255,255,0.9);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.top-bar-new a:hover {
  color: #fff;
}
.top-bar-new i {
  color: #60A5FA;
}

/* Header Middle Search Layout */
.middle-header {
  background: #fff;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-light);
}
.middle-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}
.search-container {
  display: flex;
  align-items: center;
  flex: 1;
  max-width: 650px;
  background: #F1F5F9;
  border: 2px solid #E2E8F0;
  border-radius: 50px;
  padding: 0.25rem;
  transition: var(--transition);
}
.search-container:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.15);
  background: #fff;
}
.search-cat-select {
  border: none;
  background: transparent;
  outline: none;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  padding: 0 1rem;
  border-right: 1px solid #CBD5E1;
  height: 28px;
}
.search-input-box {
  border: none;
  background: transparent;
  outline: none;
  font-size: 0.85rem;
  color: var(--text);
  padding: 0 1rem;
  flex: 1;
}
.search-btn-new {
  background: var(--primary);
  color: #fff;
  border: none;
  outline: none;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.55rem 1.75rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}
.search-btn-new:hover {
  background: var(--primary-dark);
}

.header-action-widget {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text);
}
.header-action-widget i {
  font-size: 1.75rem;
  color: var(--primary);
}
.header-action-widget .widget-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  display: block;
}
.header-action-widget .widget-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
}

/* Secondary Sub Nav Bar */
.sub-nav-bar {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 999;
}
.sub-nav-bar .container {
  display: flex;
  align-items: center;
}
.sub-nav-links {
  display: flex;
  list-style: none;
}
.sub-nav-item {
  position: relative;
}
.sub-nav-link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 1rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  border-bottom: 3px solid transparent;
  transition: var(--transition);
}
.sub-nav-link:hover, .sub-nav-link.active {
  color: var(--primary);
  background: rgba(33, 150, 243, 0.05);
}
.sub-nav-link.active-tab {
  border-bottom-color: var(--primary);
  background: var(--primary);
  color: #fff;
}
.sub-nav-link.active-tab:hover {
  color: #fff;
  background: var(--primary-dark);
}

/* Hero Badge Overlays */
.hero-right-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image-wrap {
  position: relative;
  max-width: 450px;
  width: 100%;
}
.floating-badge {
  position: absolute;
  background: #ffffff;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow);
  border-radius: 12px;
  padding: 0.6rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.76rem;
  font-weight: 700;
  animation: floatEffect 4s infinite ease-in-out;
  transition: var(--transition);
}
.floating-badge:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.floating-badge .badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.9rem;
}
.badge-1 { top: 5%; left: -5%; animation-delay: 0s; }
.badge-2 { top: 25%; right: -5%; animation-delay: 0.5s; }
.badge-3 { bottom: 35%; left: -10%; animation-delay: 1s; }
.badge-4 { top: 55%; right: -8%; animation-delay: 1.5s; }
.badge-5 { bottom: 10%; left: -2%; animation-delay: 2s; }
.badge-6 { bottom: 5%; right: -5%; animation-delay: 2.5s; }

@keyframes floatEffect {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* Service Box Cards Grid */
.pop-service-card {
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  padding: 1.75rem 1rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.01), 0 2px 8px rgba(0, 0, 0, 0.01);
}
.pop-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03), 0 2px 6px rgba(0, 0, 0, 0.01);
  border-color: #e2e8f0;
}
.pop-service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 0.25rem;
  transition: transform 0.3s ease;
}
.pop-service-card:hover .pop-service-icon {
  transform: scale(1.05);
}
.pop-service-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.35;
}

/* Promo Banner Grid */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
}
.promo-banner-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.01), 0 2px 8px rgba(0, 0, 0, 0.01);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.promo-banner-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04), 0 2px 6px rgba(0, 0, 0, 0.02);
  transform: translateY(-4px);
}
.promo-train-bg {
  background: #e9f2ff;
  border-color: #dbeafe;
}
.promo-status-bg {
  background: #fef8ec;
  border-color: #fef3c7;
}
.promo-pay-bg {
  background: #eaf9f1;
  border-color: #d1fae5;
}

/* Horizontal CSC Grid */
.csc-horizontal-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
  overflow-x: auto;
}
.csc-h-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-width: 90px;
  text-align: center;
  cursor: pointer;
}
.csc-h-item:hover .csc-h-icon {
  transform: scale(1.1);
  box-shadow: var(--shadow);
}
.csc-h-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  transition: var(--transition);
}

/* Homepage Product Grid Card */
.home-product-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}
.home-product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}
.hp-image-container {
  height: 180px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  position: relative;
}
.hp-image-container img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: var(--transition);
}
.home-product-card:hover .hp-image-container img {
  transform: scale(1.05);
}
.hp-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #10B981;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}
.hp-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.hp-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  min-height: 2.2em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hp-pricing {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.hp-sale-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
}
.hp-old-price {
  font-size: 0.8rem;
  color: var(--text-light);
  text-decoration: line-through;
}

/* Stats Counter strip */
.stats-strip-blue {
  background: #0F172A;
  color: #fff;
  padding: 2.5rem 0;
}
.stats-strip-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.stats-strip-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.stats-strip-icon {
  font-size: 2rem;
  color: #38BDF8;
}
.stats-strip-val {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
}
.stats-strip-lbl {
  font-size: 0.75rem;
  color: #94A3B8;
}

/* Testimonial Cards Layout */
.testimonial-card-new {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial-card-new:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: #F1F5F9;
  border: 2px solid var(--primary-light);
}
.testimonial-stars {
  color: #F59E0B;
  font-size: 0.85rem;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .promo-grid {
    grid-template-columns: 1fr;
  }
  .sub-nav-links {
    flex-wrap: wrap;
  }
  .sub-nav-link {
    padding: 0.75rem 1rem;
  }
}

/* Shop Sidebar Links Override */
.card .sidebar-link {
  color: var(--text) !important;
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .6rem .85rem;
  border-radius: var(--radius-sm);
  font-size: .82rem;
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
}
.card .sidebar-link:hover {
  background: var(--accent-light) !important;
  color: var(--primary) !important;
}
.card .sidebar-link.active {
  background: var(--primary) !important;
  color: #fff !important;
}
.card .sidebar-link i {
  color: inherit;
  width: 18px;
  text-align: center;
  font-size: .95rem;
}

/* ==========================================
   MOBILE & TABLET RESPONSIVE OVERRIDES
   ========================================== */

/* Prevent horizontal overflow */
html, body {
  overflow-x: hidden;
  width: 100%;
}

/* Mobile Drawer Menu Styles (Global/Fixed off-screen by default) */
.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.drawer-backdrop.active {
  opacity: 1;
  pointer-events: all;
}
.mobile-drawer-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background: #ffffff !important;
  z-index: 10001;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-drawer-menu.active {
  right: 0;
}
.drawer-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff !important;
}
.drawer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent !important;
}
.drawer-logo span {
  background: transparent !important;
  color: #1A47A1 !important;
}
.drawer-close-btn {
  background: transparent !important;
  border: none;
  font-size: 2rem;
  color: #64748b !important;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}
.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  background: #ffffff !important;
}
.drawer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  background: transparent !important;
}
.drawer-nav-list li {
  background: transparent !important;
}
.drawer-nav-list li a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--text) !important;
  background: transparent !important;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  text-decoration: none;
}
.drawer-nav-list li a:hover {
  background: var(--accent-light) !important;
  color: var(--primary) !important;
}
.drawer-nav-list li a i {
  font-size: 1.1rem;
  color: #64748b;
  background: transparent !important;
}
.drawer-nav-list li a:hover i {
  color: var(--primary);
}
.drawer-highlight-shop {
  background: #FFFBEB !important;
  color: #B45309 !important;
  border: 1px solid #FDE68A;
}
.drawer-highlight-shop i {
  color: #B45309 !important;
}
body.drawer-open {
  overflow: hidden;
}

@media (max-width: 992px) {
  /* Middle Header Responsive Layout */
  .middle-header {
    padding: 0.75rem 0;
  }
  .middle-header .container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: space-between;
    align-items: center;
  }
  .middle-header .logo {
    order: 1;
    flex: 0 0 auto;
  }
  .middle-header-actions {
    order: 2;
    flex: 0 0 auto;
    gap: 1rem !important;
  }
  .search-container {
    order: 3;
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    margin-top: 0.25rem;
  }
  
  /* Hide text labels on action widgets */
  .widget-text-content {
    display: none !important;
  }
  .header-action-widget {
    gap: 0 !important;
  }
  .header-action-widget i {
    font-size: 1.45rem !important;
  }
  .header-divider {
    display: none !important;
  }
  .hamburger-menu-btn {
    display: block !important;
  }
  
  /* Hide top desktop navigation menu */
  .sub-nav-bar {
    display: none !important;
  }
  
  /* Landing page hero section layout adjustment */
  .hero-section {
    padding: 3rem 0;
  }
  .hero-title {
    font-size: 2.2rem !important;
    text-align: center;
  }
  .hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-content p {
    text-align: center;
    margin: 0 auto 1.5rem auto;
  }
  .hero-content div {
    justify-content: center;
  }
  
  /* Fix landing page floating badges */
  .floating-badge {
    padding: 0.4rem 0.6rem !important;
    font-size: 0.7rem !important;
  }
  .badge-1 { top: 5%; left: 0% !important; }
  .badge-2 { top: 25%; right: 0% !important; }
  .badge-3 { bottom: 35%; left: 0% !important; }
  .badge-4 { top: 55%; right: 0% !important; }
  .badge-5 { bottom: 10%; left: 0% !important; }
  .badge-6 { bottom: 5%; right: 0% !important; }
}

@media (max-width: 768px) {
  /* Search Select dropdown hidden on smaller screens */
  .search-cat-select {
    display: none !important;
  }
  
  /* Hide floating badges on mobile screens to completely prevent overflow */
  .floating-badge {
    display: none !important;
  }
  
  /* Popular Services Grid - 2 columns instead of 1 */
  .grid.cols-6 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }
  .pop-service-card {
    padding: 1rem 0.5rem !important;
  }
  .pop-service-icon {
    width: 40px !important;
    height: 40px !important;
    font-size: 1.25rem !important;
  }
  
  /* Stats bar layout */
  .stats-strip-container {
    justify-content: center !important;
    gap: 1.5rem !important;
  }
  .stats-strip-item {
    min-width: 130px;
    flex-direction: column;
    text-align: center;
    gap: 0.4rem !important;
  }
  .stats-strip-icon {
    font-size: 1.6rem !important;
  }

  /* Landing Page Hero Action Buttons Stack */
  .hero-action-buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem !important;
  }
  .hero-action-buttons .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 0.8rem 1.5rem !important;
    font-size: 0.85rem !important;
  }
}

@media (max-width: 480px) {
  /* Make sure services show 2 columns even on very small screens */
  .grid.cols-6 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ==========================================
   Global Mobile Responsiveness Upgrades (<= 768px)
   ========================================== */
@media (max-width: 768px) {
  /* Grid Layouts Collapse & Reset Column Spans */
  .grid.cols-2, .grid.cols-3, .grid.cols-4 {
    grid-template-columns: 1fr !important;
  }
  .grid > * {
    grid-column: auto !important;
  }

  /* Dashboard Layout Stack */
  .app-layout {
    flex-direction: column !important;
  }
  .app-layout > div:first-child {
    width: 100% !important;
    border-right: none !important;
    border-bottom: 1px solid var(--border) !important;
    padding: 1.25rem 1rem !important;
  }
  .dashboard-sidebar {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
    justify-content: center !important;
  }
  .sidebar-link {
    padding: 0.5rem 0.75rem !important;
    font-size: 0.8rem !important;
  }
  .app-layout > div:last-child {
    padding: 1rem !important;
  }

  /* Table Overflow & Scroll */
  .table-wrapper {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 1rem;
    width: 100%;
  }
  .data-table, .cart-table {
    min-width: 600px !important;
  }

  /* General Card Padding & Tall Custom Desktop Padding Compression */
  .card, 
  [style*="padding:2rem"], 
  [style*="padding: 2rem"], 
  [style*="padding:2.5rem"], 
  [style*="padding: 2.5rem"] {
    padding: 1.25rem !important;
  }
  [style*="padding:8rem 0"], [style*="padding: 8rem 0"], [style*="padding:8rem"], [style*="padding: 8rem"], [style*="padding:6rem 0"], [style*="padding: 6rem 0"], [style*="padding:4rem 0"], [style*="padding: 4rem 0"] {
    padding: 2.5rem 1rem !important;
  }
  [style*="padding:3rem 0"], [style*="padding: 3rem 0"], [style*="padding:3rem"], [style*="padding: 3rem"] {
    padding: 1.5rem 1rem !important;
  }

  /* Shopping Cart Footer Wrap */
  .cart-actions-footer {
    flex-direction: column !important;
    gap: 1rem !important;
    align-items: stretch !important;
    text-align: center !important;
  }
  .btn-update-cart {
    justify-content: center !important;
    width: 100% !important;
  }

  /* Tracking Form Area */
  .track-form-area {
    padding: 1.5rem !important;
  }
}

/* ==========================================
   HERO STOREFRONT CARD STYLES
   ========================================== */
.hero-card-premium {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  padding: 1.25rem;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.15), 0 0 0 1px rgba(26, 71, 161, 0.05);
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hero-card-premium:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.25), 0 0 0 1px rgba(26, 71, 161, 0.1);
}
.hero-card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.05);
  background: #f1f5f9;
}
.hero-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hero-card-premium:hover .hero-card-img {
  transform: scale(1.05);
}
.verified-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  box-shadow: 0 8px 16px rgba(16, 185, 129, 0.3);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  border: 2px solid #fff;
}
.verified-badge i {
  font-size: 0.95rem;
}
.hero-card-details {
  padding-top: 1.25rem;
  text-align: left;
}
.hero-card-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: #0F172A;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-card-meta {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.75rem;
  border-top: 1px solid #E2E8F0;
  padding-top: 0.75rem;
}
.meta-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.82rem;
  color: #475569;
  font-weight: 500;
}
.meta-item i {
  color: #1A47A1;
  font-size: 1.1rem;
  width: 18px;
  text-align: center;
}
.meta-item a {
  color: inherit;
  transition: color 0.2s ease;
}
.meta-item a:hover {
  color: #1A47A1;
}

/* Highlight badge and pulsing effect */
.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #10B981;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse 1.6s infinite;
  vertical-align: middle;
  margin-left: 5px;
}
@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}



