/* 
 * SHURJOMART — Premium Brand Theme (WoodMart Edition)
 * Color Palette: #023d77 (Navy) × #fe7805 (Vivid Orange)
 */

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

/* --- DESIGN TOKENS --- */
:root {
  --color-black:        #023d77;
  --color-black-light:  #044494;
  --color-white:        #FFFFFF;
  --color-bg:           #F7F9FC;
  --color-bg-dark:      #EBF0F8;
  --color-gold:         #fe7805;
  --color-gold-hover:   #e56a00;
  --color-gold-light:   rgba(254, 120, 5, 0.1);
  --color-muted:        #64748b;
  --color-border:       #e2e8f0;
  --color-border-dark:  #cbd5e1;
  --color-success:      #16a34a;
  --color-error:        #dc2626;

  --gradient-brand:     linear-gradient(135deg, #023d77 0%, #0a5fb5 100%);
  --gradient-accent:    linear-gradient(135deg, #fe7805 0%, #ff9a3c 100%);
  --gradient-hero:      linear-gradient(160deg, #021e3c 0%, #023d77 50%, #0a5fb5 100%);

  --font-heading: 'Plus Jakarta Sans', 'Hind Siliguri', sans-serif;
  --font-body: 'Hind Siliguri', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  --max-width: 1320px;
  --transition-smooth: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.15s ease;
  --box-shadow-card: 0 4px 15px rgba(2, 61, 119, 0.05);
  --box-shadow-hover: 0 10px 25px rgba(2, 61, 119, 0.12);
}

/* --- RESET & BASE --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: #1e293b;
  line-height: 1.6;
  font-size: 14.5px;
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-black);
  font-weight: 700;
  line-height: 1.3;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

button {
  cursor: pointer;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Overlay */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 30, 60, 0.6);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ===================================================
   1. PROMO STRIP & DESKTOP HEADER
   =================================================== */
.promo-strip {
  background: var(--color-gold);
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 600;
  text-align: center;
  padding: 7px 15px;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 101;
}

#site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--color-black);
  cursor: pointer;
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
}

.site-logo, .logo {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-black);
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
}

.site-logo img {
  max-height: 45px;
  width: auto;
}

.logo span {
  color: var(--color-gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links > li > a {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-black);
  padding: 8px 0;
  position: relative;
  transition: color 0.2s;
}

.nav-links > li > a:hover {
  color: var(--color-gold);
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-icons a {
  color: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: color 0.2s;
}

.header-icons a:hover {
  color: var(--color-gold);
}

.header-icons svg {
  width: 22px;
  height: 22px;
}

.badge.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--color-gold);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===================================================
   2. HERO SLIDER
   =================================================== */
.hero-banner {
  position: relative;
  width: 100%;
  max-width: var(--max-width);
  margin: 15px auto 25px auto;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(2, 61, 119, 0.08);
  background: #023d77;
}

.hero-slides-wrap {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.hero-slide-item {
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.hero-slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-caption {
  display: none !important;
}

.hero-caption h2 {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.3;
}

.hero-caption p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(2, 30, 60, 0.6);
  color: #ffffff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s;
}

.hero-arrow:hover {
  background: var(--color-gold);
}

.hero-arrow.prev { left: 15px; }
.hero-arrow.next { right: 15px; }

.hero-dots {
  position: absolute;
  bottom: 15px;
  right: 25px;
  display: flex;
  gap: 6px;
  z-index: 10;
}

.hdot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.2s;
}

.hdot.active {
  background: var(--color-gold);
  width: 22px;
  border-radius: 5px;
}

/* ===================================================
   3. CATEGORIES HORIZONTAL SCROLL
   =================================================== */
.sec-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 30px 0 15px 0;
  border-bottom: 2px solid var(--color-border);
  padding-bottom: 10px;
}

.sec-head h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--color-black);
  margin: 0;
}

.sec-head a {
  color: var(--color-gold);
  font-size: 13px;
  font-weight: 700;
}

.cat-scroll-outer {
  overflow: visible !important;
  margin-bottom: 25px;
  padding: 4px 0;
  width: 100%;
}

.cat-scroll-inner {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: flex-start !important;
  gap: 15px 12px !important;
  width: 100%;
}

.cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  width: calc(20% - 10px) !important;
  max-width: calc(20% - 10px) !important;
  box-sizing: border-box;
  text-align: center;
}

.cat-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(2, 61, 119, 0.08);
  transition: transform 0.2s;
  margin-bottom: 6px;
  flex-shrink: 0;
}

.cat-circle img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 50%;
  display: block;
}

.cat-item:hover .cat-circle {
  transform: translateY(-3px) scale(1.05);
}

.cat-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-black);
  max-width: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ===================================================
   4. FLASH SALE
   =================================================== */
.flash-header {
  background: var(--gradient-brand);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 10px 10px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flash-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
}

.flash-title svg {
  color: var(--color-gold);
}

.flash-timer {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
}

.tbox {
  background: var(--color-gold);
  color: #ffffff;
  padding: 3px 7px;
  border-radius: 4px;
  min-width: 26px;
  text-align: center;
}

.flash-scroll-outer {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-top: none;
  border-radius: 0 0 10px 10px;
  padding: 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.flash-row {
  display: flex;
  gap: 16px;
}

.flash-card {
  flex-shrink: 0;
  width: 150px;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

.flash-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(2, 61, 119, 0.08);
}

.flash-info {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.flash-name {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--color-black);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.flash-price {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--color-gold);
}

.flash-old {
  font-size: 11px;
  color: var(--color-muted);
  text-decoration: line-through;
}

.flash-disc {
  font-size: 10px;
  color: #e53935;
  font-weight: 700;
  background: #ffeaea;
  padding: 1px 5px;
  border-radius: 3px;
  align-self: flex-start;
  margin-top: 3px;
}

/* ===================================================
   5. SPECIAL PROMO BANNERS
   =================================================== */
.banner-pair {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 35px;
}

.banner-card {
  position: relative;
  height: 160px;
  border-radius: 10px;
  overflow: hidden;
  display: block;
  box-shadow: var(--box-shadow-card);
}

.banner-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.banner-card:hover img {
  transform: scale(1.06);
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(2, 30, 60, 0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 14px;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
}

/* ===================================================
   6. TRUST STRIP
   =================================================== */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 18px 20px;
  margin-bottom: 35px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-black);
}

.trust-item svg {
  color: var(--color-gold);
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

/* ===================================================
   7. FEATURED & ARCHIVE PRODUCT GRID
   =================================================== */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.prod-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.prod-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--box-shadow-hover);
  border-color: var(--color-gold);
}

.prod-img-box {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f8fafc;
}

.prod-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.prod-card:hover .prod-img-box img {
  transform: scale(1.04);
}

.prod-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #e53935;
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  z-index: 2;
}

.prod-badge.nbadge {
  background: var(--color-gold);
  left: auto;
  right: 8px;
}

.prod-info {
  padding: 14px 14px 6px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.prod-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--color-black);
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 36px;
}

.prod-stars {
  color: #f59e0b;
  font-size: 11.5px;
}

.prod-price {
  font-size: 15.5px;
  font-weight: 800;
  color: var(--color-gold);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.prod-price .op {
  font-size: 12px;
  color: var(--color-muted);
  text-decoration: line-through;
  font-weight: normal;
}

.prod-disc {
  font-size: 10px;
  color: #e53935;
  font-weight: 700;
  background: #ffeaea;
  padding: 1px 5px;
  border-radius: 3px;
}

.prod-btn {
  width: calc(100% - 24px);
  margin: 8px 12px 14px 12px;
  background: var(--gradient-brand);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.prod-btn:hover {
  background: var(--gradient-accent);
  box-shadow: 0 4px 12px rgba(254, 120, 5, 0.35);
}

/* ===================================================
   8. NEWSLETTER
   =================================================== */
.newsletter-mob {
  background: var(--gradient-brand);
  color: #ffffff;
  padding: 40px 20px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(2, 61, 119, 0.12);
}

.newsletter-mob p {
  color: var(--color-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.newsletter-mob h3 {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 8px;
}

.newsletter-mob small {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  display: block;
}

.newsletter-mob form {
  display: flex;
  max-width: 440px;
  margin: 20px auto 0;
  gap: 8px;
}

.newsletter-mob input {
  flex: 1;
  background: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 13px;
  color: #1e293b;
  outline: none;
}

.newsletter-mob button {
  background: var(--gradient-accent);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 12px 22px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
}

/* ===================================================
   9. FOOTER
   =================================================== */
footer {
  background: #023d77;
  color: #ffffff;
  padding: 60px 0 25px 0;
  border-top: 2px solid rgba(254, 120, 5, 0.3);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  display: inline-block;
  margin-bottom: 12px;
}

.footer-logo span { color: var(--color-gold); }

.footer-logo img {
  max-height: 45px;
  width: auto;
}

.footer-desc {
  font-size: 13px;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 18px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.2s;
}

.social-links a:hover {
  background: var(--color-gold);
  transform: translateY(-2px);
}

.footer-column h4 {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 8px;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column a {
  font-size: 13px;
  color: #cbd5e1;
  transition: color 0.2s;
}

.footer-column a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #94a3b8;
}

/* ===================================================
   10. FLOATING WHATSAPP & CART DRAWER
   =================================================== */
.live-chat-widget {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 990;
}

.live-chat-trigger {
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  position: relative;
  transition: transform 0.2s;
}

.live-chat-trigger:hover {
  transform: scale(1.08);
}

.chat-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: waPulse 1.8s infinite;
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.45); opacity: 0; }
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -380px;
  width: 360px;
  max-width: 90vw;
  height: 100%;
  background: #ffffff;
  z-index: 999;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.cart-drawer.active {
  right: 0;
}

.cart-drawer-header {
  padding: 18px 20px;
  background: var(--gradient-brand);
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-drawer-header h3 {
  color: #ffffff;
  font-size: 16px;
  margin: 0;
  font-weight: 700;
}

.cart-drawer-header .close-btn {
  background: rgba(255, 255, 255, 0.18) !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  color: #ffffff !important;
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  font-size: 18px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  padding: 0 !important;
  line-height: 1 !important;
  box-shadow: none !important;
}
.cart-drawer-header .close-btn:hover {
  background: rgba(255, 255, 255, 0.35) !important;
  transform: scale(1.1);
}

.cart-drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: 15px 20px;
}

.cart-drawer-footer {
  padding: 18px 20px;
  border-top: 1px solid var(--color-border);
  background: #f8fafc;
}

.cart-drawer-subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 14px;
}

.cart-drawer-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.cart-drawer-actions .btn {
  padding: 10px;
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 700;
  text-align: center;
}

.btn-primary {
  background: var(--gradient-accent);
  color: #ffffff;
  border: none;
}

.btn-secondary {
  background: #ffffff;
  color: var(--color-black);
  border: 1px solid var(--color-black);
}

/* Search Overlay */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 30, 60, 0.95);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}

.search-overlay.active {
  display: flex;
}

.search-container {
  width: 100%;
  max-width: 600px;
  padding: 20px;
}

.search-input-wrapper {
  display: flex;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.search-input-wrapper input {
  flex: 1;
  border: none;
  padding: 16px 20px;
  font-size: 16px;
  outline: none;
}

.search-input-wrapper button {
  background: var(--color-gold);
  color: #fff;
  border: none;
  padding: 0 24px;
  cursor: pointer;
}

/* ===================================================
   11. MOBILE DRAWER & BOTTOM NAV (DESKTOP RULES)
   =================================================== */
.bottom-nav {
  display: none !important;
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  max-width: 85vw;
  height: 100%;
  background: #023d77;
  color: #ffffff;
  z-index: 999;
  display: flex;
  flex-direction: column;
  transition: left 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 5px 0 25px rgba(0, 0, 0, 0.25);
}

.mobile-nav.active {
  left: 0;
}

.mobile-nav-header {
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-nav-header .logo {
  color: #ffffff;
  font-size: 20px;
}

.mobile-nav-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-nav-links a {
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  transition: color 0.2s;
}

.mobile-nav-links a:hover {
  color: var(--color-gold);
}

.menu-num {
  font-size: 11px;
  color: var(--color-gold);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.mobile-nav-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 18px 0;
}

.btn-mobile-login {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
}

.btn-mobile-login:hover {
  background: var(--color-gold);
}

.mobile-nav-footer {
  padding: 15px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.7);
}

/* Floating Live Chat Widget */
.live-chat-widget {
  position: fixed;
  bottom: 25px;
  right: 20px;
  z-index: 99999;
}

/* User-Friendly Logged-In WooCommerce Account Dashboard Layout */
.woocommerce-account .woocommerce {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: flex-start;
  margin-top: 15px !important;
}

/* User Card at Top Left Navigation */
.shurjo-account-user-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #023d77 0%, #04529c 100%);
  color: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  margin-bottom: 12px;
  box-shadow: 0 4px 14px rgba(2, 61, 119, 0.2);
}
.shurjo-account-avatar img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
}
.shurjo-account-user-info h4 {
  margin: 0 0 2px 0;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}
.shurjo-account-user-info p {
  margin: 0;
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  word-break: break-all;
}

/* Sidebar Navigation Menu Items */
.woocommerce-account .woocommerce-MyAccount-navigation {
  flex: 0 0 250px;
  max-width: 250px;
}
.shurjo-account-nav ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.shurjo-account-nav li {
  margin: 0 !important;
  padding: 0 !important;
}
.shurjo-account-nav li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  color: #334155;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}
.shurjo-account-nav li a:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: #023d77;
  transform: translateX(3px);
}
.shurjo-account-nav li.is-active a {
  background: #023d77 !important;
  color: #ffffff !important;
  border-color: #023d77 !important;
  box-shadow: 0 4px 14px rgba(2, 61, 119, 0.25) !important;
}
.shurjo-account-nav li.is-active a .nav-icon {
  transform: scale(1.15);
}
.shurjo-account-nav .nav-icon {
  font-size: 18px;
  transition: transform 0.2s ease;
}

/* Content Area Right Side */
.woocommerce-account .woocommerce-MyAccount-content {
  flex: 1;
  min-width: 0;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  box-sizing: border-box;
}

/* Welcome Banner inside Dashboard */
.shurjo-dashboard-welcome-banner {
  background: #f8fafc;
  border-left: 4px solid #023d77;
  padding: 16px 20px;
  border-radius: 0 10px 10px 0;
  margin-bottom: 22px;
}
.shurjo-dashboard-welcome-banner h2 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 6px 0;
}
.shurjo-dashboard-welcome-banner h2 span {
  color: #023d77;
}
.shurjo-dashboard-welcome-banner p {
  font-size: 13px;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

/* Quick Action Cards Grid */
.shurjo-dashboard-actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}
.shurjo-dash-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 18px;
  text-decoration: none;
  transition: all 0.25s ease;
}
.shurjo-dash-card:hover {
  border-color: #023d77;
  box-shadow: 0 8px 25px rgba(2, 61, 119, 0.1);
  transform: translateY(-2px);
}
.shurjo-dash-card .dash-card-icon {
  font-size: 28px;
  margin-bottom: 10px;
}
.shurjo-dash-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 4px 0;
}
.shurjo-dash-card p {
  font-size: 12.5px;
  color: #64748b;
  margin: 0 0 12px 0;
  flex: 1;
  line-height: 1.4;
}
/* Ultra-Beautiful Logged-In WooCommerce Account Tables & Content Forms */

/* Orders Table Styling */
.woocommerce-account .woocommerce-orders-table {
  width: 100% !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  margin-top: 10px !important;
  background: #ffffff !important;
}
.woocommerce-account .woocommerce-orders-table th {
  background: #f8fafc !important;
  color: #1e293b !important;
  font-weight: 700 !important;
  font-size: 13.5px !important;
  padding: 12px 14px !important;
  border-bottom: 1.5px solid #e2e8f0 !important;
}
.woocommerce-account .woocommerce-orders-table td {
  padding: 12px 14px !important;
  border-bottom: 1px solid #f1f5f9 !important;
  font-size: 13.5px !important;
  color: #334155 !important;
  vertical-align: middle !important;
}
.woocommerce-account .woocommerce-orders-table tr:last-child td {
  border-bottom: none !important;
}

/* Order Status Badges */
.woocommerce-orders-table__cell-order-status .order-status,
.mark-complete, .order-status {
  display: inline-block !important;
  padding: 4px 10px !important;
  border-radius: 20px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  text-transform: capitalize !important;
}
.order-status.status-completed {
  background: #dcfce7 !important;
  color: #166534 !important;
}
.order-status.status-processing,
.order-status.status-on-hold {
  background: #e0f2fe !important;
  color: #0369a1 !important;
}
.order-status.status-pending {
  background: #fef3c7 !important;
  color: #92400e !important;
}
.order-status.status-cancelled,
.order-status.status-failed {
  background: #fee2e2 !important;
  color: #991b1b !important;
}

/* Orders Action Buttons */
.woocommerce-orders-table__cell-order-actions .button {
  padding: 7px 12px !important;
  background: #023d77 !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  border-radius: 6px !important;
  font-size: 12.5px !important;
  text-decoration: none !important;
  display: inline-block !important;
  transition: all 0.2s ease !important;
}
.woocommerce-orders-table__cell-order-actions .button:hover {
  background: #044494 !important;
}

/* Address Cards & Forms */
.woocommerce-Address-title h3 {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #023d77 !important;
  margin-bottom: 10px !important;
}
.woocommerce-Address address {
  background: #f8fafc !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 10px !important;
  padding: 16px !important;
  font-style: normal !important;
  line-height: 1.6 !important;
  font-size: 13.5px !important;
  color: #334155 !important;
  margin-bottom: 15px !important;
}

/* Account Details Edit Form */
.woocommerce-EditAccountForm label,
.woocommerce-address-fields label {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #1e293b !important;
  margin-bottom: 5px !important;
  display: block !important;
}
.woocommerce-EditAccountForm input[type="text"],
.woocommerce-EditAccountForm input[type="email"],
.woocommerce-EditAccountForm input[type="password"],
.woocommerce-address-fields input[type="text"],
.woocommerce-address-fields select {
  width: 100% !important;
  border: 1.5px solid #e2e8f0 !important;
  padding: 10px 12px !important;
  font-size: 13.5px !important;
  border-radius: 8px !important;
  outline: none !important;
  box-sizing: border-box !important;
  margin-bottom: 14px !important;
  background: #fafbfc !important;
}
.woocommerce-EditAccountForm input:focus,
.woocommerce-address-fields input:focus {
  border-color: #023d77 !important;
  background: #ffffff !important;
}
.woocommerce-EditAccountForm fieldset {
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 10px !important;
  padding: 18px !important;
  margin: 18px 0 !important;
  background: #f8fafc !important;
}
.woocommerce-EditAccountForm fieldset legend {
  font-weight: 700 !important;
  color: #023d77 !important;
  padding: 0 8px !important;
  font-size: 14px !important;
}

.woocommerce-EditAccountForm button[type="submit"],
.woocommerce-address-fields button[type="submit"] {
  padding: 12px 20px !important;
  background: #023d77 !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  border: none !important;
  border-radius: 8px !important;
  font-size: 14.5px !important;
  cursor: pointer !important;
  box-shadow: 0 4px 14px rgba(2, 61, 119, 0.22) !important;
  margin-top: 10px !important;
  transition: all 0.2s ease !important;
}
.woocommerce-EditAccountForm button[type="submit"]:hover,
.woocommerce-address-fields button[type="submit"]:hover {
  background: #044494 !important;
}

/* Ultra-Stunning Category Filter Pills on Shop Page */
.shurjo-shop-cat-pills-wrapper {
  margin: 15px 0 25px 0;
  clear: both;
  width: 100%;
}
.shurjo-shop-cat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.shurjo-cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 30px;
  color: #475569;
  font-weight: 600;
  font-size: 13.5px;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}
.shurjo-cat-pill:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: #023d77;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
.shurjo-cat-pill.active {
  background: linear-gradient(135deg, #023d77 0%, #04529c 100%) !important;
  color: #ffffff !important;
  border-color: #023d77 !important;
  box-shadow: 0 4px 15px rgba(2, 61, 119, 0.28) !important;
}
.shurjo-cat-pill .cat-count-badge {
  background: rgba(0, 0, 0, 0.06);
  color: inherit;
  font-size: 11.5px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 12px;
}
.shurjo-cat-pill.active .cat-count-badge {
  background: rgba(255, 255, 255, 0.22) !important;
  color: #ffffff !important;
}

/* Sleek Modern WooCommerce Ordering Dropdown */
.woocommerce-ordering select {
  padding: 9px 36px 9px 14px !important;
  border: 1.5px solid #cbd5e1 !important;
  border-radius: 8px !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  color: #1e293b !important;
  background: #ffffff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23023d77' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 12px center !important;
  background-size: 16px !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  outline: none !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03) !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}
.woocommerce-ordering select:hover,
.woocommerce-ordering select:focus {
  border-color: #023d77 !important;
  box-shadow: 0 0 0 3px rgba(2, 61, 119, 0.1) !important;
}

