/* ==========================================================================
   3STAR BOOKSTORE & STATIONERS - FRIENDLY LOCAL E-COMMERCE DESIGN SYSTEM
   Hyderabad, Sindh, Pakistan | 3starbookstore.pk
   ========================================================================== */

:root {
  /* Vibrant Local E-Commerce Colors */
  --primary-red: #D32F2F;           /* Signature E-Commerce Red (matching search border) */
  --primary-red-hover: #B71C1C;
  --primary-red-subtle: #FFEBEE;
  
  --primary-blue: #0F4C81;          /* Trust Academic Navy / Royal Blue */
  --primary-blue-hover: #0A3258;
  --primary-blue-light: #E1F5FE;
  
  --sindh-navy: #111D38;            /* Official Sindh Board Poster Navy */
  --sindh-navy-dark: #0A1224;

  --whatsapp-green: #25D366;        /* Official WhatsApp */
  --whatsapp-hover: #1EBE5D;
  --whatsapp-dark: #128C7E;
  --whatsapp-subtle: #E8F5E9;

  --badge-gold: #F59E0B;
  --badge-green: #10B981;
  --badge-cyan: #06B6D4;
  --badge-pink: #EC4899;

  /* Surfaces & Canvas */
  --bg-page: #F8FAFC;               /* Clean, crisp off-white canvas */
  --bg-white: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-subtle-blue: #F0F7FF;
  --bg-subtle-amber: #FFFBEB;

  --border-light: #E2E8F0;
  --border-medium: #CBD5E1;
  --border-red: #D32F2F;
  --border-dark: #1E293B;

  /* Typography */
  --text-main: #0F172A;
  --text-body: #334155;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --text-white: #FFFFFF;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 10px 25px -4px rgba(15, 23, 42, 0.1);
  --shadow-xl: 0 20px 40px -8px rgba(15, 23, 42, 0.15);

  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --transition: all 0.22s ease-in-out;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-body);
  line-height: 1.55;
  overflow-x: hidden;
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

.section-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR (Local COD Hyderabad)
   ========================================================================== */
.top-announcement-bar {
  background: #0B192E;
  color: #E2E8F0;
  font-size: 0.84rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 101;
}

.announcement-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.announcement-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #22C55E;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulseGreen 1.8s infinite;
}

@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { box-shadow: 0 0 0 7px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.announcement-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.announcement-link {
  color: #4ADE80;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.announcement-link:hover {
  text-decoration: underline;
}

.announcement-sep {
  color: #475569;
}

/* ==========================================================================
   STICKY HEADER & PROMINENT SEARCH BAR (MATCHING SCREENSHOT 1)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  background: #FFFFFF;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  z-index: 100;
}

.header-main-row {
  max-width: 1360px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Brand Logo (Large & Clear) */
.brand-logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--primary-blue);
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.brand-name-sub {
  color: var(--primary-red);
}

.brand-tagline {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   PRIMARY NAVIGATION MENU BAR (Standard E-Commerce Header Navigation)
   ========================================================================== */
.primary-nav-bar {
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  position: relative;
  z-index: 90;
}

.nav-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-menu-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 4px;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.nav-menu-list::-webkit-scrollbar {
  display: none;
}

.nav-item {
  position: relative;
  flex-shrink: 0;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-family: var(--font-heading);
  font-size: 0.90rem;
  font-weight: 700;
  color: var(--text-main);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}

.nav-caret {
  font-size: 0.70rem;
  color: #94A3B8;
  transition: transform 0.2s ease;
}

.nav-link:hover {
  color: var(--primary-red);
}

.nav-link.active {
  color: var(--primary-red);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2.5px;
  background: var(--primary-red);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

/* Nav Dropdown on Hover (Like Astra / WooCommerce) */
.nav-item.has-dropdown:hover .nav-caret {
  transform: rotate(180deg);
  color: var(--primary-red);
}

.nav-item.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #FFFFFF;
  min-width: 220px;
  list-style: none;
  border-radius: 8px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
  padding: 6px 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
  z-index: 250;
}

.nav-dropdown li a {
  display: block;
  padding: 8px 16px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-body);
  text-decoration: none;
  transition: var(--transition);
}

.nav-dropdown li a:hover {
  background: #F1F5F9;
  color: var(--primary-red);
  padding-left: 20px;
}

@media (max-width: 992px) {
  .primary-nav-bar {
    display: none;
  }
}

/* Search Container with RED BORDER matching Screenshot 1 */
.search-bar-wrap {
  flex: 1;
  max-width: 620px;
  position: relative;
}

.search-input-box-red {
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border: 2px solid var(--border-red); /* Prominent red outline matching screenshot */
  border-radius: 6px;
  padding: 3px 6px 3px 14px;
  box-shadow: 0 2px 6px rgba(211, 47, 47, 0.08);
  transition: var(--transition);
}

.search-input-box-red:focus-within {
  box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.2);
}

.search-icon {
  color: #64748B;
  font-size: 1.1rem;
  margin-right: 10px;
}

.search-input-box-red input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.96rem;
  font-family: var(--font-body);
  color: var(--text-main);
  padding: 8px 0;
  background: transparent;
}

.search-input-box-red input::placeholder {
  color: #8E9AAF;
  font-weight: 500;
}

.search-clear-btn {
  color: #94A3B8;
  padding: 6px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.search-clear-btn:hover {
  color: var(--primary-red);
}

.search-submit-btn {
  background: var(--primary-red);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 8px 18px;
  border-radius: 4px;
  margin-left: 6px;
  transition: var(--transition);
}

.search-submit-btn:hover {
  background: var(--primary-red-hover);
}

/* Live Search Autocomplete Dropdown */
.live-search-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  box-shadow: var(--shadow-xl);
  display: none;
  z-index: 200;
  overflow: hidden;
}

.live-search-dropdown.open {
  display: block;
}

.search-dropdown-header {
  padding: 10px 14px;
  background: #F8FAFC;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.quick-search-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.search-tag {
  background: #FFFFFF;
  border: 1px solid var(--border-medium);
  padding: 2px 8px;
  border-radius: 4px;
  cursor: pointer;
  color: var(--primary-blue);
  transition: var(--transition);
}

.search-tag:hover {
  background: var(--primary-red-subtle);
  border-color: var(--primary-red);
  color: var(--primary-red);
}

.search-results-list {
  max-height: 380px;
  overflow-y: auto;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
  cursor: pointer;
}

.search-result-item:hover {
  background: #F1F5F9;
}

.search-item-thumb {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--border-light);
}

.search-item-info {
  flex: 1;
}

.search-item-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.search-item-cat {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.search-item-price {
  font-weight: 700;
  color: var(--primary-red);
  font-size: 0.92rem;
}

/* Header Action Buttons */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-header-bag {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-blue);
  color: #FFFFFF;
  padding: 7px 16px;
  border-radius: 6px;
  transition: var(--transition);
}

.btn-header-bag:hover {
  background: var(--primary-blue-hover);
  transform: translateY(-1px);
}

.bag-icon-box {
  position: relative;
  font-size: 1.25rem;
}

.bag-pill {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--primary-red);
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 900;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid var(--primary-blue);
}

.bag-meta {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.15;
}

.bag-title {
  font-size: 0.72rem;
  opacity: 0.85;
  text-transform: uppercase;
}

.bag-price {
  font-size: 0.92rem;
  font-weight: 800;
  color: #FFD54F;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 6px;
  border-radius: 4px;
  background: #F1F5F9;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 2.5px;
  background: var(--text-main);
  border-radius: 2px;
}

/* Mobile Nav Drawer (Hidden Off-Screen, Only Opens on Toggle) */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(2px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-backdrop.active,
.mobile-nav-backdrop.open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  left: auto;
  bottom: 0;
  width: 300px;
  max-width: 85vw;
  background: #FFFFFF;
  z-index: 999;
  box-shadow: -8px 0 25px rgba(0, 0, 0, 0.15);
  transform: translate3d(100%, 0, 0);
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.32s ease;
  display: flex;
  flex-direction: column;
  visibility: hidden;
  pointer-events: none;
}

.mobile-nav-drawer.active,
.mobile-nav-drawer.open {
  transform: translate3d(0, 0, 0);
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid var(--border-light);
  background: #F8FAFC;
}

.mobile-nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--primary-blue);
}

.mobile-nav-close {
  font-size: 1.2rem;
  color: var(--text-muted);
  padding: 4px;
}

.mobile-nav-close:hover {
  color: var(--primary-red);
}

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

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}

.mobile-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-main);
  transition: var(--transition);
}

.mobile-link:hover, .mobile-link.active {
  background: var(--primary-red-subtle);
  color: var(--primary-red);
}

.mobile-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: #FFFFFF;
  font-weight: 800;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.mobile-timings-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ==========================================================================
   HERO PROMOTIONAL POSTER BANNER (MATCHING SCREENSHOT 2)
   ========================================================================== */
.hero-banners-section {
  padding: 16px 0 24px;
}

.hero-banners-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.hero-slider {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 380px;
  position: relative;
  width: 100%;
}

.hero-slider-track {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.hero-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  height: 100%;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}

/* Slide 1: Sindh Board Poster (Direct Replica of Screenshot 2) */
.slide-sindh-board {
  background: linear-gradient(135deg, #111D38 0%, #172554 100%);
  color: #FFFFFF;
  padding: 30px 48px;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.sindh-poster-wrapper {
  display: flex;
  align-items: center;
  gap: 36px;
  min-height: 220px;
}

.sindh-poster-seal-box {
  width: 190px;
  height: 190px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.3));
}

.sindh-board-seal-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* The vertical white divider line from Screenshot 2 */
.sindh-poster-divider {
  width: 3.5px;
  align-self: stretch;
  background-color: #FFFFFF;
  border-radius: 2px;
  opacity: 0.9;
  flex-shrink: 0;
}

.sindh-poster-text-box {
  flex: 1;
}

.sindh-poster-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 215, 0, 0.18);
  border: 1px solid #FFD700;
  color: #FFD700;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}

/* Big bold all-caps typography from Screenshot 2 */
.sindh-poster-title {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 1.18;
  color: #FFFFFF;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.sindh-poster-sub {
  font-size: 0.96rem;
  color: #CBD5E1;
  max-width: 680px;
  margin-bottom: 18px;
}

.sindh-poster-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-poster-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: var(--transition);
}

.btn-poster-action.primary {
  background: var(--primary-red);
  color: #FFFFFF;
}

.btn-poster-action.primary:hover {
  background: var(--primary-red-hover);
  transform: translateY(-2px);
}

.btn-poster-action.whatsapp {
  background: #25D366;
  color: #FFFFFF;
}

.btn-poster-action.whatsapp:hover {
  background: #1EBE5D;
  transform: translateY(-2px);
}

/* Graphic Poster Slides */
.hero-graphic-link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-graphic-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hero-graphic-link:hover .hero-graphic-banner-img {
  transform: scale(1.03);
}

.hero-graphic-cta-strip {
  position: absolute;
  bottom: 24px;
  right: 28px;
  display: flex;
  gap: 12px;
  z-index: 5;
}

.poster-book-img {
  width: 170px;
  height: 210px;
  object-fit: cover;
  border-radius: 6px;
}

.book-badge-float {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  background: rgba(15, 23, 42, 0.92);
  color: #4ADE80;
  font-size: 0.75rem;
  font-weight: 800;
  text-align: center;
  padding: 4px 6px;
  border-radius: 4px;
}

/* Slide 3: Fine Art & Resin */
.slide-resin-art {
  background: linear-gradient(135deg, #4A0E4E 0%, #1E1B4B 100%);
  color: #FFFFFF;
  padding: 32px 40px;
}

.resin-poster-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.resin-poster-text {
  flex: 1;
}

.resin-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(244, 114, 182, 0.2);
  border: 1px solid #F472B6;
  color: #F472B6;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.resin-title {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 10px;
}

.resin-desc {
  font-size: 0.95rem;
  color: #E2E8F0;
  margin-bottom: 20px;
  max-width: 600px;
}

.resin-poster-icons {
  display: flex;
  gap: 16px;
}

.resin-badge-circle {
  width: 100px;
  height: 100px;
  background: #FFF;
  border-radius: 50%;
  padding: 6px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  z-index: 10;
}

.slider-arrow:hover {
  background: #FFFFFF;
  color: var(--primary-red);
  transform: translateY(-50%) scale(1.08);
}

.slider-prev { left: 30px; }
.slider-next { right: 30px; }

.slider-indicators {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: var(--transition);
}

.indicator.active {
  background: #FFFFFF;
  width: 26px;
  border-radius: 999px;
}

/* ==========================================================================
   CIRCULAR CATEGORY NAVIGATION (MATCHING SCREENSHOT 1: "Explore Art You love")
   ========================================================================== */
.explore-categories-section {
  padding: 30px 0 20px;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-light);
}

.section-header-friendly {
  text-align: center;
  margin-bottom: 24px;
}

.section-friendly-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 500;
  color: #1E88E5; /* Soft vibrant blue matching Screenshot 1 */
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}

.section-friendly-subtitle {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* Circular Badges Grid matching Screenshot 1 */
.category-circles-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
  padding: 10px 0 20px;
  overflow-x: auto;
  scrollbar-width: none;
}

.category-circles-grid::-webkit-scrollbar {
  display: none;
}

.category-circle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  min-width: 120px;
}

.category-circle-item:hover {
  transform: translateY(-4px);
}

.circle-image-holder {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  margin-bottom: 12px;
  transition: var(--transition);
}

.category-circle-item:hover .circle-image-holder {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
  transform: scale(1.05);
}

.circle-svg-icon {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

/* Colored Rings matching Screenshot 1 */
.ring-cyan { border: 4px solid #00BCD4; }
.ring-green { border: 4px solid #4CAF50; }
.ring-pink { border: 4px solid #E91E63; }
.ring-yellow { border: 4px solid #FFB300; }
.ring-teal { border: 4px solid #00897B; }
.ring-navy { border: 4px solid #1A237E; }
.ring-purple { border: 4px solid #8E24AA; }
.ring-indigo { border: 4px solid #3949AB; }

/* Bold centered uppercase underlined title matching Screenshot 1 */
.circle-item-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-main);
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1.5px;
  line-height: 1.25;
  transition: var(--transition);
}

.category-circle-item:hover .circle-item-title {
  color: var(--primary-red);
  text-decoration-color: var(--primary-red);
}

/* ==========================================================================
   TRUST FEATURES STRIP
   ========================================================================== */
.trust-features-strip {
  padding: 20px 0;
  background: #F1F5F9;
  border-bottom: 1px solid var(--border-light);
}

.trust-items-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust-badge-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #FFFFFF;
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.trust-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--primary-red-subtle);
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.trust-text-box {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.trust-text-box b {
  font-size: 0.88rem;
  color: var(--text-main);
}

.trust-text-box span {
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* ==========================================================================
   CATEGORY CAROUSEL SHELVES ("Products Pop Up From Every Corner")
   ========================================================================== */
.product-shelf-section {
  padding: 34px 0 40px;
}

.bg-soft-blue {
  background-color: var(--bg-subtle-blue);
}

.bg-soft-amber {
  background-color: var(--bg-subtle-amber);
}

.shelf-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 14px;
}

.shelf-title-wrap {
  flex: 1;
}

.shelf-badge-fire {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #FEE2E2;
  color: #DC2626;
  font-size: 0.74rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 6px;
}

.shelf-badge-art {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #EDE9FE;
  color: #6D28D9;
  font-size: 0.74rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 6px;
}

.shelf-badge-exam {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #E0F2FE;
  color: #0369A1;
  font-size: 0.74rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 6px;
}

.shelf-badge-board {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #FEF3C7;
  color: #B45309;
  font-size: 0.74rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 6px;
}

.shelf-badge-stat {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #DCFCE7;
  color: #15803D;
  font-size: 0.74rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 6px;
}

.shelf-title {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
}

.shelf-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 3px;
}

.shelf-controls {
  display: flex;
  gap: 8px;
}

.shelf-arrow-btn {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  background: #FFFFFF;
  border: 1px solid var(--border-medium);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.shelf-arrow-btn:hover {
  background: var(--primary-red);
  color: #FFFFFF;
  border-color: var(--primary-red);
}

/* Horizontal Scrolling Carousel Track */
.shelf-carousel-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 6px 2px 14px;
}

.shelf-carousel-track::-webkit-scrollbar {
  display: none;
}

/* Product Card Styling */
.product-shelf-card {
  flex: 0 0 255px;
  scroll-snap-align: start;
  background: #FFFFFF;
  border-radius: 10px;
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.product-shelf-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: #CBD5E1;
}

.card-img-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  background: #F8FAFC;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.product-shelf-card:hover .card-thumb-img {
  transform: scale(1.06);
}

.card-discount-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--primary-red);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(211, 47, 47, 0.3);
}

.card-badge-pill {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(15, 23, 42, 0.85);
  color: #FFFFFF;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}

.card-quick-view-btn {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(255, 255, 255, 0.94);
  color: var(--text-main);
  border: 1px solid var(--border-medium);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.product-shelf-card:hover .card-quick-view-btn {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.card-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-rating-row {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 6px;
}

.stars-gold {
  color: #F59E0B;
  font-size: 0.76rem;
}

.reviews-count {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.card-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.35;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.7em;
}

.card-pricing-row {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: baseline !important;
  justify-content: flex-start !important;
  gap: 2px 6px !important;
  width: 100% !important;
  min-height: 22px !important;
  margin-top: auto !important;
  margin-bottom: clamp(6px, 1.5vw, 10px) !important;
  line-height: 1.25 !important;
  overflow: visible !important;
}

.card-pricing-row ins {
  order: 1 !important;
  color: var(--primary-red) !important;
  font-family: var(--font-heading) !important;
  font-size: clamp(0.86rem, 2.6vw, 1.08rem) !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

.card-pricing-row del {
  order: 2 !important;
  color: var(--text-light) !important;
  font-family: var(--font-heading) !important;
  font-size: clamp(0.70rem, 2vw, 0.82rem) !important;
  font-weight: 500 !important;
  text-decoration: line-through !important;
  opacity: 0.85 !important;
  white-space: nowrap !important;
}

.card-pricing-row > .amount,
.card-pricing-row > .woocommerce-Price-amount,
.card-pricing-row > bdi,
.card-pricing-row span.amount {
  color: var(--primary-blue) !important;
  font-family: var(--font-heading) !important;
  font-size: clamp(0.88rem, 2.6vw, 1.08rem) !important;
  font-weight: 800 !important;
  white-space: nowrap !important;
}

.card-pricing-row ins span.amount,
.card-pricing-row ins .woocommerce-Price-amount {
  color: var(--primary-red) !important;
}

.card-pricing-row del span.amount,
.card-pricing-row del .woocommerce-Price-amount {
  color: var(--text-light) !important;
}

.card-pricing-row .woocommerce-Price-currencySymbol {
  font-size: 0.82em !important;
  margin-right: 2px !important;
}

.card-actions-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: clamp(4px, 1.2vw, 8px) !important;
  margin-top: auto !important;
  align-items: center !important;
}

.btn-card-add-bag {
  background: var(--primary-blue) !important;
  color: #FFFFFF !important;
  height: clamp(32px, 7.5vw, 38px) !important;
  width: 100% !important;
  border-radius: clamp(6px, 1.5vw, 8px) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: clamp(0.95rem, 2.4vw, 1.15rem) !important;
  text-decoration: none !important;
  cursor: pointer !important;
  transition: var(--transition) !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: 0 2px 6px rgba(11, 25, 46, 0.15) !important;
}

.btn-card-add-bag:hover {
  background: var(--primary-red) !important;
  color: #FFFFFF !important;
  transform: translateY(-1px) !important;
}

.btn-card-wa {
  background: #E8F5E9 !important;
  color: #2E7D32 !important;
  height: clamp(32px, 7.5vw, 38px) !important;
  width: 100% !important;
  border-radius: clamp(6px, 1.5vw, 8px) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: clamp(1rem, 2.6vw, 1.2rem) !important;
  text-decoration: none !important;
  transition: var(--transition) !important;
  border: 1px solid #C8E6C9 !important;
  padding: 0 !important;
}

.btn-card-wa:hover {
  background: #25D366;
  color: #FFFFFF;
}

/* ==========================================================================
   PROMOTIONAL POSTERS GRID SECTION
   ========================================================================== */
.promo-posters-grid-section {
  padding: 10px 0 30px;
}

.posters-graphic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.poster-graphic-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  background: #FFFFFF;
  transition: var(--transition);
}

.poster-graphic-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.poster-graphic-link {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.poster-graphic-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.poster-graphic-card:hover .poster-graphic-img {
  transform: scale(1.05);
}

.poster-graphic-overlay {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 2;
}

.btn-poster-shop {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 23, 42, 0.9);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 7px 14px;
  border-radius: 6px;
  backdrop-filter: blur(4px);
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.poster-graphic-card:hover .btn-poster-shop {
  background: var(--primary-red);
  color: #FFFFFF;
  transform: translateX(2px);
}

/* ==========================================================================
   SMART EXAM BOOK FINDER WIZARD
   ========================================================================== */
.book-finder-section {
  padding: 30px 0 40px;
}

.finder-glass-box {
  background: #FFFFFF;
  border-radius: 14px;
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-md);
  padding: 32px;
}

.badge-pill-finder {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #F3E8FF;
  color: #7C3AED;
  font-size: 0.74rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.finder-header h2 {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 6px;
}

.finder-header p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.finder-controls-grid {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr;
  gap: 16px;
  align-items: flex-end;
  margin-bottom: 24px;
}

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

.finder-field label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 6px;
}

.finder-select {
  padding: 10px 14px;
  border-radius: 6px;
  border: 1.5px solid var(--border-medium);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-main);
  background: #FFFFFF;
  outline: none;
  transition: var(--transition);
}

.finder-select:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(15, 76, 129, 0.15);
}

.btn-finder-search {
  width: 100%;
  padding: 11px 16px;
  background: var(--primary-red);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.92rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-finder-search:hover {
  background: var(--primary-red-hover);
}

.finder-result-card {
  background: #F0FDF4;
  border: 1.5px solid #86EFAC;
  border-radius: 10px;
  padding: 20px;
}

.result-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  color: #15803D;
  background: #DCFCE7;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.result-details-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.result-icon-box {
  width: 50px;
  height: 50px;
  background: #22C55E;
  color: #FFF;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.result-text {
  flex: 1;
  min-width: 260px;
}

.result-text h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #14532D;
  margin-bottom: 4px;
}

.result-text p {
  font-size: 0.85rem;
  color: #374151;
}

.result-pricing {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.price-val {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--primary-red);
}

.result-pricing del {
  color: #9CA3AF;
  font-size: 0.9rem;
}

.btn-add-bundle {
  background: #16A34A;
  color: #FFFFFF;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: var(--transition);
}

.btn-add-bundle:hover {
  background: #15803D;
}

/* ==========================================================================
   CUSTOMER REVIEWS SECTION
   ========================================================================== */
.testimonials-section {
  padding: 40px 0;
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
}

.section-heading-center {
  text-align: center;
  margin-bottom: 30px;
}

.section-subtitle {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--primary-red);
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--text-main);
}

.heading-accent-line {
  width: 50px;
  height: 3px;
  background: var(--primary-red);
  margin: 8px auto 0;
  border-radius: 2px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: #F8FAFC;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.review-stars {
  color: #F59E0B;
  font-size: 1rem;
  margin-bottom: 8px;
}

.review-text {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviewer-avatar {
  width: 38px;
  height: 38px;
  background: var(--primary-blue);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
}

.reviewer-name {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text-main);
}

.reviewer-role {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #0B192E;
  color: #E2E8F0;
  border-top: 3px solid var(--primary-red);
}

.footer-top {
  padding: 50px 0 30px;
}

.footer-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 36px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-logo {
  height: 42px;
  width: auto;
}

.footer-brand-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  color: #FFFFFF;
}

.footer-desc {
  font-size: 0.85rem;
  color: #94A3B8;
  line-height: 1.5;
  margin-bottom: 18px;
}

.footer-timings-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 0.8rem;
  margin-bottom: 16px;
}

.timings-title {
  color: #FFD54F;
  font-weight: 700;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.timings-row {
  display: flex;
  justify-content: space-between;
  color: #CBD5E1;
}

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

.footer-social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social-links a:hover {
  background: var(--primary-red);
  transform: translateY(-2px);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 16px;
  border-bottom: 2px solid var(--primary-red);
  padding-bottom: 6px;
  display: inline-block;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links a {
  font-size: 0.85rem;
  color: #94A3B8;
  transition: var(--transition);
}

.footer-links a:hover {
  color: #FFFFFF;
  padding-left: 4px;
}

.footer-policy-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.policy-item {
  display: flex;
  gap: 10px;
}

.policy-item i {
  color: #4ADE80;
  font-size: 1.1rem;
  margin-top: 3px;
}

.policy-item b {
  display: block;
  font-size: 0.85rem;
  color: #FFFFFF;
}

.policy-item p {
  font-size: 0.78rem;
  color: #94A3B8;
}

.whatsapp-card-cta {
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: 8px;
  padding: 12px;
  text-align: center;
}

.whatsapp-card-cta span {
  display: block;
  font-size: 0.78rem;
  color: #86EFAC;
  margin-bottom: 6px;
}

.btn-footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #25D366;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.84rem;
  padding: 6px 14px;
  border-radius: 4px;
  transition: var(--transition);
}

.btn-footer-wa:hover {
  background: #1EBE5D;
}

.footer-bottom {
  background: #060D17;
  padding: 18px 0;
  font-size: 0.82rem;
  color: #64748B;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.bottom-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.payment-methods-strip {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pay-tag {
  background: rgba(255, 255, 255, 0.06);
  padding: 4px 10px;
  border-radius: 4px;
  color: #CBD5E1;
  font-size: 0.76rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ==========================================================================
   SLIDE-OVER CART DRAWER
   ========================================================================== */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(2px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cart-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 440px;
  background: #FFFFFF;
  box-shadow: -4px 0 25px rgba(0, 0, 0, 0.15);
  z-index: 999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.active {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
  background: #F8FAFC;
}

.drawer-title-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.drawer-icon {
  font-size: 1.3rem;
  color: var(--primary-blue);
}

.drawer-title-group h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
}

.cart-drawer-close-btn {
  font-size: 1.2rem;
  color: var(--text-muted);
  padding: 4px;
}

.cart-drawer-close-btn:hover {
  color: var(--primary-red);
}

.free-shipping-container {
  padding: 10px 20px;
  background: #EFF6FF;
  border-bottom: 1px solid #BFDBFE;
}

.free-shipping-status {
  font-size: 0.8rem;
  color: #1E40AF;
  margin-bottom: 6px;
}

.progress-bar-track {
  height: 6px;
  background: #DBEAFE;
  border-radius: 999px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: #2563EB;
  border-radius: 999px;
  transition: width 0.3s ease;
}

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

.empty-cart-state {
  text-align: center;
  padding: 40px 10px;
}

.empty-cart-illustration {
  font-size: 3rem;
  margin-bottom: 12px;
}

.empty-cart-state h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 6px;
}

.empty-cart-state p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.btn-start-shopping {
  background: var(--primary-red);
  color: #FFFFFF;
  font-weight: 800;
  padding: 8px 18px;
  border-radius: 6px;
}

.cart-item-row {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}

.cart-item-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--border-light);
}

.cart-item-details {
  flex: 1;
}

.cart-item-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.25;
  margin-bottom: 4px;
}

.cart-item-price {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary-red);
  margin-bottom: 6px;
}

.cart-qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-medium);
  border-radius: 4px;
  background: #FFFFFF;
}

.cart-qty-btn {
  padding: 2px 8px;
  font-weight: 700;
  color: var(--text-main);
}

.cart-qty-btn:hover {
  background: #F1F5F9;
}

.cart-qty-val {
  padding: 2px 8px;
  font-size: 0.85rem;
  font-weight: 700;
  border-left: 1px solid var(--border-medium);
  border-right: 1px solid var(--border-medium);
}

.cart-item-remove-btn {
  color: #94A3B8;
  padding: 4px;
  align-self: flex-start;
}

.cart-item-remove-btn:hover {
  color: var(--primary-red);
}

.cart-drawer-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border-light);
  background: #F8FAFC;
}

.city-delivery-choice {
  margin-bottom: 12px;
}

.city-delivery-choice label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-main);
  display: block;
  margin-bottom: 5px;
}

.choice-radio-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.radio-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  border-radius: 6px;
  border: 1px solid var(--border-medium);
  background: #FFFFFF;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 600;
}

.radio-chip input {
  accent-color: var(--primary-red);
}

.cart-summary-breakdown {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-body);
}

.summary-row.total-row {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--text-main);
  border-top: 1px solid var(--border-medium);
  padding-top: 8px;
  margin-top: 4px;
}

.summary-row.total-row .val-total {
  color: var(--primary-red);
}

.drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 10px;
}

.btn-checkout-whatsapp {
  width: 100%;
  padding: 11px;
  border-radius: 6px;
  background: #25D366;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-checkout-whatsapp:hover {
  background: #1EBE5D;
}

.btn-checkout-instant {
  width: 100%;
  padding: 11px;
  border-radius: 6px;
  background: var(--primary-red);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-checkout-instant:hover {
  background: var(--primary-red-hover);
}

.cart-security-badge {
  text-align: center;
  font-size: 0.74rem;
  color: var(--text-muted);
}

/* ==========================================================================
   MODAL OVERLAYS (Quick View & COD Checkout)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(3px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.quickview-modal-card, .checkout-modal-card {
  background: #FFFFFF;
  border-radius: 12px;
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-xl);
  padding: 26px;
  transform: translateY(15px);
  transition: transform 0.25s ease;
}

.modal-overlay.active .quickview-modal-card,
.modal-overlay.active .checkout-modal-card {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #F1F5F9;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.modal-close-btn:hover {
  background: var(--primary-red-subtle);
  color: var(--primary-red);
}

/* Quick View Inner Grid */
.modal-content-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
  align-items: center;
}

.modal-img-col img {
  width: 100%;
  max-height: 280px;
  object-fit: contain;
  border-radius: 8px;
}

.modal-details-col h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
}

.modal-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}

.modal-price-current {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--primary-red);
}

.modal-desc {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.5;
  margin-bottom: 18px;
}

.modal-actions-row {
  display: flex;
  gap: 10px;
}

/* COD Checkout Form */
.form-header {
  text-align: center;
  margin-bottom: 20px;
}

.form-header-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-red-subtle);
  color: var(--primary-red);
  font-size: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.form-header h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
}

.form-header p {
  font-size: 0.86rem;
  color: var(--text-muted);
}

.cod-order-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-main);
}

.form-group input, .form-group textarea, .form-group select {
  padding: 9px 12px;
  border-radius: 6px;
  border: 1px solid var(--border-medium);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-main);
  outline: none;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--primary-red);
}

.modal-order-summary-box {
  background: #F8FAFC;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mos-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.86rem;
}

.mos-total {
  font-size: 1rem;
  font-weight: 800;
  border-top: 1px solid var(--border-light);
  padding-top: 6px;
  margin-top: 4px;
}

.text-danger {
  color: var(--primary-red);
}

.btn-confirm-order-glow {
  width: 100%;
  padding: 12px;
  background: var(--primary-red);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.95rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(211, 47, 47, 0.35);
}

.btn-confirm-order-glow:hover {
  background: var(--primary-red-hover);
}

/* ==========================================================================
   LIVE CORNER PRODUCT POPUP (SOCIAL PROOF - FROM EVERY CORNER PRODUCTS POP UP)
   ========================================================================== */
.corner-product-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  box-shadow: var(--shadow-xl);
  padding: 12px 14px;
  max-width: 320px;
  z-index: 990;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.corner-product-toast.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.toast-close-btn {
  position: absolute;
  top: 6px;
  right: 6px;
  color: #94A3B8;
  font-size: 0.75rem;
  padding: 3px;
}

.toast-close-btn:hover {
  color: var(--primary-red);
}

.toast-indicator-pulse {
  position: absolute;
  top: -4px;
  left: -4px;
  width: 10px;
  height: 10px;
  background: #22C55E;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.3);
}

.toast-item-thumb {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--border-light);
  flex-shrink: 0;
}

.toast-info {
  flex: 1;
  line-height: 1.2;
}

.toast-customer {
  font-size: 0.74rem;
  color: #15803D;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 2px;
}

.toast-product-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-main);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 3px;
}

.toast-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.toast-price {
  font-size: 0.85rem;
  font-weight: 900;
  color: var(--primary-red);
}

.toast-quick-link {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--primary-blue);
  cursor: pointer;
}

.toast-quick-link:hover {
  text-decoration: underline;
}

/* ==========================================================================
   BLUE SQUARE BACK-TO-TOP BUTTON (DIRECT MATCH TO SCREENSHOT 1)
   ========================================================================== */
.back-to-top-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: #1976D2; /* Direct match to bright blue in Screenshot 1 */
  color: #FFFFFF;
  border-radius: 4px; /* Square with slight radius matching screenshot */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  box-shadow: 0 4px 10px rgba(25, 118, 210, 0.35);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 950;
}

.back-to-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top-btn:hover {
  background: #1565C0;
  transform: translateY(-2px);
}

/* ==========================================================================
   FLOATING CART BUTTON (PRESENT ON EVERY SCREEN - DESKTOP, TABLET & MOBILE)
   ========================================================================== */
.floating-cart-pill {
  position: fixed;
  bottom: 140px;
  right: 24px;
  background: #0F4C81;
  color: #FFFFFF;
  padding: 10px 16px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(15, 76, 129, 0.4), 0 2px 6px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 970;
  cursor: pointer;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.floating-cart-pill:hover {
  background: #0A3258;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 25px rgba(15, 76, 129, 0.5);
}

.floating-cart-icon-box {
  position: relative;
  font-size: 1.45rem;
  color: #FFFFFF;
  display: flex;
  align-items: center;
}

.floating-cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background: #D32F2F;
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 900;
  min-width: 19px;
  height: 19px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid #0F4C81;
  box-shadow: 0 2px 6px rgba(211, 47, 47, 0.5);
}

.floating-cart-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
}

.floating-cart-title {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #E2E8F0;
  text-transform: uppercase;
}

.floating-cart-price {
  font-size: 1.05rem;
  font-weight: 900;
  color: #FFD54F; /* Bright Gold matching screenshot */
  letter-spacing: -0.2px;
}

/* Clickable product links */
.card-img-link {
  display: block;
  width: 100%;
  height: 100%;
}

.card-title a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

.card-title a:hover {
  color: var(--primary-red);
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON (BOTTOM RIGHT)
   ========================================================================== */
.floating-whatsapp-bubble {
  position: fixed;
  bottom: 76px;
  right: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  z-index: 960;
  transition: var(--transition);
}

.floating-whatsapp-bubble:hover {
  transform: scale(1.08);
}

.wa-bubble-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: waPulse 2s infinite;
}

@keyframes waPulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  70% { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(1.25); opacity: 0; }
}

.wa-tooltip {
  position: absolute;
  right: 62px;
  background: #0F172A;
  color: #FFFFFF;
  font-size: 0.76rem;
  font-weight: 700;
  white-space: nowrap;
  padding: 4px 10px;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  transform: translateX(6px);
  transition: var(--transition);
}

.floating-whatsapp-bubble:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================================
   COMPREHENSIVE RESPONSIVE DESIGN SYSTEM (Desktop, Tablet & Mobile)
   ========================================================================== */

/* --- 1. Large Tablets & Small Laptops (max-width: 1024px) --- */
@media (max-width: 1024px) {
  .section-container {
    padding: 0 16px;
  }

  .header-main-row {
    padding: 12px 18px;
    gap: 16px;
  }

  .brand-logo {
    height: 48px;
  }

  .brand-name {
    font-size: 1.45rem;
  }

  .search-bar-wrap {
    max-width: 520px;
  }

  .hero-slider {
    height: 330px;
  }

  .sindh-poster-title {
    font-size: 1.65rem;
  }

  .sindh-poster-seal-box {
    width: 130px;
    height: 130px;
  }

  .category-circles-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }

  .product-shelf-card {
    flex: 0 0 220px;
    width: 220px;
  }

  .posters-graphic-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .trust-items-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

/* --- 2. Tablets (Portrait) & Large Mobile Screens (max-width: 768px) --- */
@media (max-width: 768px) {
  /* Remove top announcement bar on phone screens */
  .top-announcement-bar {
    display: none !important;
  }

  .site-header {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

  /* Two-row mobile header: Row 1 = Brand (80%) + Menu (20%), Row 2 = Search (80%) + Cart (20%) */
  .site-header .header-main-row {
    display: grid !important;
    grid-template-columns: minmax(0, 4fr) minmax(0, 1fr) !important;
    grid-template-areas:
      "brand toggle"
      "search cart" !important;
    align-items: center !important;
    padding: 8px 12px !important;
    gap: 8px 8px !important;
  }

  /* Row 1 Left: Brand Logo & Name */
  .brand-logo-wrap {
    grid-area: brand !important;
    min-width: 0 !important;
    max-height: 44px !important;
    height: auto !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
  }

  .brand-logo,
  .brand-logo-img {
    max-height: 38px !important;
    height: 38px !important;
    width: auto !important;
    max-width: 46px !important;
    object-fit: contain !important;
    flex-shrink: 0 !important;
  }

  .brand-text-block {
    display: flex !important;
    flex-direction: column !important;
    line-height: 1.15 !important;
    overflow: hidden !important;
    min-width: 0 !important;
  }

  .brand-name-title,
  .brand-name {
    font-size: 0.95rem !important;
    font-weight: 800 !important;
    color: #0B192E !important;
    white-space: nowrap !important;
    text-overflow: ellipsis !important;
    overflow: hidden !important;
  }

  .brand-tagline-sub,
  .brand-tagline {
    font-size: 0.54rem !important;
    font-weight: 700 !important;
    color: #D32F2F !important;
    letter-spacing: 0.2px !important;
    white-space: nowrap !important;
    text-overflow: ellipsis !important;
    overflow: hidden !important;
  }

  /* Row 1 Right: Off-Canvas Menu Toggle Icon */
  .mobile-menu-toggle {
    grid-area: toggle !important;
    justify-self: end !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 4px !important;
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    padding: 7px !important;
    border-radius: 8px !important;
    background: #0B192E !important;
    border: none !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
    box-shadow: 0 2px 6px rgba(11, 25, 46, 0.15) !important;
  }

  .mobile-menu-toggle span {
    display: block !important;
    width: 19px !important;
    height: 2.5px !important;
    background: #FFFFFF !important;
    border-radius: 2px !important;
  }

  /* Row 2 Left (80%): Search Bar */
  .search-bar-wrap {
    grid-area: search !important;
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
  }

  .search-input-box-red {
    display: flex !important;
    align-items: center !important;
    height: 42px !important;
    padding: 0 10px !important;
    border: 2px solid #D32F2F !important;
    border-radius: 8px !important;
    background: #FFFFFF !important;
    box-shadow: 0 2px 6px rgba(211, 47, 47, 0.08) !important;
  }

  .search-input-box-red .search-icon {
    font-size: 1rem !important;
    color: #64748B !important;
    margin-right: 8px !important;
    flex-shrink: 0 !important;
  }

  .search-input-box-red input {
    flex: 1 !important;
    border: none !important;
    outline: none !important;
    font-size: 0.84rem !important;
    color: #0F172A !important;
    background: transparent !important;
    padding: 0 !important;
    width: 100% !important;
  }

  .search-input-box-red input::placeholder {
    color: #8E9AAF !important;
    font-size: 0.80rem !important;
  }

  .search-input-box-red .search-submit-btn {
    display: none !important;
  }

  /* Row 2 Right (20%): Shopping Cart Icon Button */
  .header-actions,
  .header-cart-wrap {
    grid-area: cart !important;
    width: 100% !important;
    min-width: 0 !important;
    display: flex !important;
    justify-content: flex-end !important;
    margin: 0 !important;
  }

  .header-actions .btn-header-bag,
  .header-cart-wrap .btn-header-bag {
    width: 100% !important;
    height: 42px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #0B192E !important;
    color: #FFFFFF !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    position: relative !important;
    box-shadow: 0 2px 6px rgba(11, 25, 46, 0.15) !important;
    transition: all 0.2s ease !important;
  }

  .header-actions .btn-header-bag:hover,
  .header-actions .btn-header-bag:active,
  .header-cart-wrap .btn-header-bag:hover,
  .header-cart-wrap .btn-header-bag:active {
    background: #D32F2F !important;
  }

  .header-actions .btn-header-bag .bag-meta,
  .header-cart-wrap .btn-header-bag .bag-meta {
    display: none !important;
  }

  .header-actions .btn-header-bag .bag-icon-box,
  .header-cart-wrap .btn-header-bag .bag-icon-box {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .header-actions .btn-header-bag .bag-icon-box i,
  .header-cart-wrap .btn-header-bag .bag-icon-box i {
    font-size: 1.25rem !important;
    color: #FFFFFF !important;
  }

  .header-actions .btn-header-bag .bag-pill,
  .header-cart-wrap .btn-header-bag .bag-pill {
    position: absolute !important;
    top: -8px !important;
    right: -10px !important;
    background: #D32F2F !important;
    color: #FFFFFF !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 0.68rem !important;
    font-weight: 800 !important;
    min-width: 18px !important;
    height: 18px !important;
    border-radius: 999px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 3px !important;
    border: 2px solid #FFFFFF !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
  }

  /* Hide Desktop Primary Nav Bar on Mobile; use Hamburger Drawer */
  .primary-nav-bar {
    display: none !important;
  }

  /* Hero Slider Mobile Adaptation */
  .hero-banners-section {
    padding: 8px 0 16px;
  }

  .hero-banners-container {
    padding: 0 12px;
  }

  .hero-slider {
    height: 290px;
    border-radius: 12px;
  }

  /* Slide 1: Sindh Board Practicals Poster on Mobile */
  .slide-sindh-board {
    padding: 14px 12px;
  }

  .sindh-poster-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    justify-content: center;
  }

  .sindh-poster-divider {
    display: none;
  }

  .sindh-poster-seal-box {
    width: 65px;
    height: 65px;
    padding: 4px;
  }

  .sindh-board-seal-img {
    max-height: 55px;
  }

  .sindh-poster-badge {
    font-size: 0.65rem;
    padding: 2px 8px;
    margin-bottom: 4px;
  }

  .sindh-poster-title {
    font-size: 1.15rem;
    line-height: 1.25;
    letter-spacing: -0.3px;
  }

  .sindh-poster-sub {
    display: none; /* Hide detailed paragraph on small screens to fit buttons */
  }

  .sindh-poster-actions {
    flex-direction: row;
    gap: 8px;
    margin-top: 6px;
    justify-content: center;
  }

  .sindh-poster-actions .btn-poster-action {
    padding: 7px 12px;
    font-size: 0.78rem;
  }

  /* Graphic slides on mobile */
  .hero-graphic-cta-strip {
    bottom: 10px;
    left: 10px;
    right: 10px;
    gap: 8px;
  }

  .btn-poster-action {
    padding: 6px 12px;
    font-size: 0.76rem;
  }

  /* Slider arrows touch size */
  .slider-arrow {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.85);
  }

  .slider-prev { left: 8px; }
  .slider-next { right: 8px; }

  /* Circular Category Badges: Smooth Mobile Swipe Track */
  .explore-categories-section {
    padding: 16px 0;
  }

  .section-header-friendly {
    margin-bottom: 12px;
    text-align: left;
    padding: 0 4px;
  }

  .section-friendly-title {
    font-size: 1.35rem;
  }

  .section-friendly-subtitle {
    font-size: 0.8rem;
  }

  .category-circles-grid {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 4px 4px 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .category-circles-grid::-webkit-scrollbar {
    display: none;
  }

  .category-circle-item {
    flex: 0 0 84px;
    min-width: 84px;
    scroll-snap-align: start;
    text-align: center;
  }

  .circle-image-holder {
    width: 64px;
    height: 64px;
    margin: 0 auto 6px;
    padding: 8px;
  }

  .circle-item-title {
    font-size: 0.66rem;
    line-height: 1.2;
    letter-spacing: 0.2px;
  }

  /* Product Shelves & Carousels on Mobile */
  .product-shelf-section {
    padding: 20px 0;
  }

  .shelf-header {
    margin-bottom: 12px;
    gap: 8px;
  }

  .shelf-title {
    font-size: 1.22rem;
  }

  .shelf-desc {
    display: none;
  }

  .shelf-arrow-btn {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }

  .shelf-carousel-track {
    gap: 12px;
    padding: 4px 4px 14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .product-shelf-card {
    flex: 0 0 195px;
    width: 195px;
    scroll-snap-align: start;
    border-radius: 10px;
  }

  .card-img-wrap {
    height: 165px;
  }

  .card-thumb-img {
    padding: 6px;
  }

  .card-body {
    padding: 10px 12px;
  }

  .card-title {
    font-size: clamp(0.74rem, 2.2vw, 0.84rem) !important;
    line-height: 1.25 !important;
    min-height: 2.5em !important;
    max-height: 2.5em !important;
    margin-bottom: 4px !important;
  }

  .card-pricing-row {
    margin-bottom: 6px !important;
    gap: 2px 4px !important;
  }

  .btn-card-add-bag,
  .btn-card-wa {
    height: 34px !important;
    font-size: 1rem !important;
  }

  /* Promo Posters Grid Mobile (Stack neatly) */
  .posters-graphic-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .poster-graphic-card {
    height: 180px;
    border-radius: 12px;
  }

  .btn-poster-shop {
    padding: 7px 14px;
    font-size: 0.8rem;
  }

  /* Trust Badges on Mobile */
  .trust-items-row {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .trust-badge-card {
    padding: 10px;
    gap: 10px;
  }

  .trust-icon-box {
    width: 36px;
    height: 36px;
    font-size: 1.05rem;
  }

  .trust-text-box b {
    font-size: 0.78rem;
  }

  .trust-text-box span {
    display: none;
  }

  /* Testimonials */
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .review-card {
    padding: 16px;
  }

  /* Footer on Mobile */
  .footer-container {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-social-row {
    justify-content: center;
  }

  /* Cart Drawer Full-screen Touch Optimization */
  .cart-drawer {
    width: 100%;
    max-width: 100%;
  }

  .cart-drawer-header {
    padding: 14px 16px;
  }

  .cart-drawer-body {
    padding: 14px 16px;
  }

  .cart-drawer-footer {
    padding: 14px 16px;
  }

  /* Modals on Mobile */
  .modal-box {
    width: 95%;
    max-width: 95%;
    padding: 16px;
    border-radius: 14px;
  }

  .modal-content-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .modal-img-col img {
    max-height: 200px;
  }

  /* Floating UI Elements: Keep them distinct and non-overlapping */
  .floating-cart-pill {
    bottom: 126px;
    right: 14px;
    padding: 8px 12px;
    gap: 9px;
  }

  .floating-cart-title {
    font-size: 0.68rem;
  }

  .floating-cart-price {
    font-size: 0.92rem;
  }

  .floating-whatsapp-bubble {
    bottom: 68px;
    right: 14px;
    width: 48px;
    height: 48px;
    font-size: 1.55rem;
  }

  .back-to-top-btn {
    bottom: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
  }

  .corner-product-toast {
    left: 10px;
    right: 74px; /* Leaves clear space for floating buttons */
    max-width: calc(100% - 84px);
    bottom: 12px;
    padding: 8px 10px;
    border-radius: 8px;
  }

  .toast-item-thumb {
    width: 42px;
    height: 42px;
  }

  .toast-product-name {
    font-size: 0.76rem;
  }

  .toast-price {
    font-size: 0.8rem;
  }
}

/* --- 3. Compact Mobile Screens (max-width: 480px) --- */
@media (max-width: 480px) {
  .floating-cart-pill {
    bottom: 122px;
    right: 10px;
    padding: 6px 10px;
    gap: 8px;
  }

  .floating-cart-icon-box {
    font-size: 1.25rem;
  }

  .floating-cart-badge {
    min-width: 17px;
    height: 17px;
    font-size: 0.68rem;
    top: -6px;
    right: -8px;
  }

  .brand-name {
    font-size: 1.15rem;
  }

  .brand-logo {
    height: 36px;
  }

  .hero-slider {
    height: 260px;
  }

  .sindh-poster-title {
    font-size: 1.05rem;
  }

  .sindh-poster-seal-box {
    width: 50px;
    height: 50px;
  }

  .sindh-board-seal-img {
    max-height: 44px;
  }

  .sindh-poster-actions .btn-poster-action.whatsapp {
    display: none; /* Show single main action button on smallest screen to stay perfectly clean */
  }

  .product-shelf-card {
    flex: 0 0 178px;
    width: 178px;
  }

  .card-img-wrap {
    height: 145px;
  }

  .category-circle-item {
    flex: 0 0 74px;
    min-width: 74px;
  }

  .circle-image-holder {
    width: 56px;
    height: 56px;
    padding: 6px;
  }

  .circle-item-title {
    font-size: 0.62rem;
  }
}

/* ==========================================================================
   SINGLE PRODUCT PAGE STYLES (MATCHING MODERN LOCAL E-COMMERCE THEME)
   ========================================================================== */
.breadcrumb-container {
  background: #F1F5F9;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  font-size: 0.82rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.breadcrumb-list a {
  color: var(--primary-blue);
  font-weight: 600;
  text-decoration: none;
}

.breadcrumb-sep {
  font-size: 0.65rem;
  color: #94A3B8;
}

.breadcrumb-current {
  color: var(--text-main);
  font-weight: 700;
}

.single-product-main {
  padding: 32px 0 60px;
}

.product-showcase-grid {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 40px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  margin-bottom: 40px;
}

.product-gallery-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-main-image-card {
  position: relative;
  background: #F8FAFC;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  overflow: hidden;
}

.product-featured-img {
  max-width: 100%;
  max-height: 380px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-main-image-card:hover .product-featured-img {
  transform: scale(1.04);
}

.product-trust-strip {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #F8FAFC;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  font-size: 0.82rem;
  font-weight: 600;
  color: #334155;
}

.pts-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pts-item i {
  color: #16A34A;
}

.product-details-col {
  display: flex;
  flex-direction: column;
}

.product-dept-tag {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--primary-blue);
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}

.product-page-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.25;
  margin-bottom: 12px;
}

.product-rating-review-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.stock-pill {
  font-size: 0.76rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.stock-pill.in-stock {
  background: #DCFCE7;
  color: #15803D;
}

.product-price-box {
  background: #F8FAFC;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 20px;
}

.price-main-display {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.current-price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary-red);
}

.regular-price {
  font-size: 1.2rem;
  color: #94A3B8;
  font-weight: 600;
}

.save-tag {
  background: var(--primary-red);
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 4px;
}

.price-tax-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.hyderabad-delivery-card {
  background: #EFF6FF;
  border: 1.5px solid #BFDBFE;
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 24px;
}

.hdc-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}

.hdc-icon {
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin-top: 2px;
}

.hdc-header b {
  display: block;
  font-size: 0.95rem;
  color: var(--primary-blue);
}

.hdc-header span {
  font-size: 0.82rem;
  color: #334155;
}

.hdc-perks {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #1E40AF;
}

.product-purchase-action-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.qty-selector-wrap {
  display: flex;
  align-items: center;
  border: 2px solid var(--border-medium);
  border-radius: 8px;
  overflow: hidden;
  background: #FFFFFF;
}

.qty-btn {
  width: 40px;
  height: 44px;
  background: #F8FAFC;
  color: var(--text-main);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.qty-btn:hover {
  background: var(--primary-blue);
  color: #FFFFFF;
}

.qty-input {
  width: 48px;
  height: 44px;
  border: none;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 800;
  font-family: inherit;
  color: var(--text-main);
}

.btn-buy-add-bag {
  flex: 1;
  min-width: 160px;
  height: 46px;
  background: var(--primary-red);
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 800;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(211, 47, 47, 0.35);
  transition: var(--transition);
}

.btn-buy-add-bag:hover {
  background: var(--primary-red-hover);
  transform: translateY(-2px);
}

.btn-buy-whatsapp {
  flex: 1;
  min-width: 170px;
  height: 46px;
  background: var(--whatsapp-green);
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 800;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
}

.btn-buy-whatsapp:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-2px);
}

.product-description-card {
  border-top: 1px solid var(--border-light);
  padding-top: 20px;
}

.product-description-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
}

.product-description-card p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
}

.related-shelf-section {
  margin-top: 20px;
}

@media (max-width: 900px) {
  .product-showcase-grid {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 24px;
  }
  .product-main-image-card {
    min-height: 300px;
  }
  .product-page-title {
    font-size: 1.45rem;
  }
  .current-price {
    font-size: 1.7rem;
  }
}

/* WORDPRESS LOGO & CART OVERRIDES */
.brand-logo-wrap, .brand-logo-wrap .custom-logo-link {
  display: flex !important;
  align-items: center !important;
  max-height: 60px !important;
  flex-shrink: 0 !important;
}
.brand-logo-wrap img, .custom-logo, .brand-logo, .brand-logo-link img {
  max-height: 56px !important;
  height: 56px !important;
  width: auto !important;
  max-width: 220px !important;
  object-fit: contain !important;
  display: block !important;
}
