/* ==========================================================================
   ARSH GAMESHOP - CARROM POOL SINGLE STORE
   EXACT PREMIUM SHOOPY & ARSH GAMESHOP COLOR PALETTE & MOBILE-FIRST DESIGN
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&family=Noto+Sans:wght@400;500;600;700;800&family=Outfit:wght@600;700;800;900&display=swap');

:root {
  /* Exact Arsh Gameshop / Shoopy Theme Variables */
  --header-main: #3A3E46;
  --header-contrast-text: #FFFFFF;
  --header-notice-background: #33363D;
  --header-notice-text: #FFFFFF;
  --header-accent: #F6740A;
  --header-badge-main: #F6740A;
  --header-badge-contrast-text: #FFFFFF;
  
  --brand-orange: #F6740A;
  --brand-orange-hover: #e06300;
  --brand-orange-light: #FFF4EC;
  --brand-orange-border: rgba(246, 116, 10, 0.3);
  
  --wa-green: #25D366;
  --wa-green-hover: #1EBD5A;
  --wa-green-dark: #128C7E;
  --wa-green-glow: transparent;
  
  --product-discount-tag-background: #FF7222;
  --product-discount-tag-color: #FFFFFF;
  --product-price-color: #1A1A1A;
  
  --bottom-nav-main: #3A3E46;
  --bottom-nav-selected: #F6740A;
  --bottom-nav-not-selected: #94A3B8;
  --bottom-nav-height: 0px;
  
  --bg-page: #F4F6F9;
  --bg-card: #FFFFFF;
  --text-primary: #1E293B;
  --text-secondary: #475569;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --border-color: #E2E8F0;
  --border-card: #E5E9F0;
  
  --font-heading: "Outfit", "Roboto", "Noto Sans", sans-serif;
  --font-body: "Roboto", "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 18px;
  --radius-full: 9999px;
  
  --shadow-sm: none;
  --shadow-md: none;
  --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  --max-store-width: 1400px;
}

/* Base Reset & Zero Overflow */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  background-color: var(--bg-page);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.45;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  padding-bottom: calc(var(--bottom-nav-height) + 20px);
}

@media (min-width: 960px) {
  body {
    padding-bottom: 0;
  }
}

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

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

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

.sh-container {
  width: 100%;
  max-width: var(--max-store-width);
  margin: 0 auto;
  padding: 0 12px;
}

@media (min-width: 600px) {
  .sh-container {
    padding: 0 16px;
  }
}

@media (min-width: 1024px) {
  .sh-container {
    padding: 0 24px;
  }
}

/* ==========================================================================
   1. TOP NOTICE & APP HEADER (EXACT #3A3E46)
   ========================================================================== */
.sh-top-notice {
  background-color: var(--header-notice-background);
  color: var(--header-notice-text);
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  padding: 7px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.sh-top-notice .live-dot {
  width: 7px;
  height: 7px;
  background: #22C55E;
  border-radius: 50%;
  display: inline-block;
  box-shadow: none;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}

.sh-app-bar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--header-main);
  color: var(--header-contrast-text);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.sh-app-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 60px;
  height: 60px;
}

.sh-brand-section {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FFFFFF;
  flex-shrink: 0;
}

.sh-logo-box {
  background-color: #FFFFFF;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: none;
}

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

.sh-brand-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
  letter-spacing: -0.2px;
}

@media (min-width: 600px) {
  .sh-brand-title {
    font-size: 18px;
  }
}

.sh-brand-punchline {
  font-size: 11px;
  color: #CBD5E1;
  font-weight: 400;
}

/* Desktop Search Bar in Header */
.sh-header-search {
  flex: 1;
  max-width: 460px;
  margin: 0 10px;
}

@media (max-width: 768px) {
  .sh-header-search {
    display: none;
  }
}

.sh-search-field {
  background: #FFFFFF;
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  height: 40px;
  border: 1.5px solid transparent;
  width: 100%;
  transition: all 0.2s;
}

.sh-search-field:focus-within {
  border-color: var(--header-accent);
  box-shadow: none;
}

.sh-search-field svg {
  width: 16px;
  height: 16px;
  stroke: #64748B;
  fill: none;
  flex-shrink: 0;
}

.sh-search-field input {
  border: none;
  outline: none;
  width: 100%;
  padding: 0 10px;
  font-size: 13.5px;
  color: #1E293B;
  background: transparent;
}

/* Header Right Buttons */
.sh-header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-header-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #FFFFFF;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 13px;
  box-shadow: none;
  transition: background-color 0.2s;
}

.btn-header-wa:hover {
  transform: none;
  box-shadow: none;
  background: #1EBD5A;
}

@media (max-width: 600px) {
  .btn-header-wa span {
    display: none;
  }
  .btn-header-wa {
    padding: 8px 10px;
  }
}

/* ==========================================================================
   MOBILE TOP SEARCH BAR
   ========================================================================== */
.sh-mobile-search-bar {
  padding: 10px 12px;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-color);
  width: 100%;
}

@media (min-width: 769px) {
  .sh-mobile-search-bar {
    display: none;
  }
}

.sh-mobile-search-bar .sh-search-field {
  border: 1px solid var(--border-color);
  background: #F8FAFC;
  height: 38px;
}

/* ==========================================================================
   2. HORIZONTAL SCROLLING CATEGORY TABS (EXACT SHOOPY)
   ========================================================================== */
.sh-cat-tabs-wrapper {
  background: #FFFFFF;
  border-bottom: 1px solid #E2E8F0;
  position: relative;
  width: 100%;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
}

.sh-cat-tabs-container {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  height: 48px;
}

.sh-cat-arrow-btn {
  background: transparent;
  border: none;
  color: #94A3B8;
  width: 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: color 0.15s;
}

.sh-cat-arrow-btn:hover {
  color: var(--brand-orange);
}

.sh-cat-tabs-scroll {
  display: flex;
  align-items: center;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  gap: 16px;
  padding: 0 8px;
  width: 100%;
  height: 100%;
}

.sh-cat-tabs-scroll::-webkit-scrollbar {
  display: none;
}

.sh-cat-tab {
  background: transparent;
  border: none;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #64748B;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  border-bottom: 3px solid transparent;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  padding: 0 4px;
}

.sh-cat-tab:first-child {
  text-transform: none; /* 'All Products' */
}

.sh-cat-tab:hover {
  color: var(--text-primary);
}

.sh-cat-tab.active {
  color: var(--brand-orange);
  font-weight: 800;
  border-bottom-color: var(--brand-orange);
}

.sh-cat-tab .tab-badge-num {
  background: #F1F5F9;
  color: #475569;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: var(--radius-full);
}

.sh-cat-tab.active .tab-badge-num {
  background: var(--brand-orange-light);
  color: var(--brand-orange);
}

/* ==========================================================================
   HERO / BANNER CAROUSEL SLIDER
   ========================================================================== */
.sh-hero-slider-wrap {
  position: relative;
  margin-top: 42px;
  margin-bottom: 14px;
  overflow: visible;
}

.sh-hero-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
  background: #0F172A;
}

.sh-hero-track {
  display: flex;
  width: 100%;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}

.sh-hero-slide {
  flex: 0 0 100%;
  min-width: 100%;
  box-sizing: border-box;
  padding: 16px 18px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  color: #FFFFFF;
  cursor: default;
  position: relative;
  user-select: none;
}

.sh-hero-slide.is-clickable {
  cursor: pointer;
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.sh-hero-slide.is-clickable:hover {
  filter: brightness(1.05);
}

/* Slide 1: Shop Offer */
.slide-offer {
  background: linear-gradient(135deg, #1E293B, #0F172A);
}

/* Slide 2: Telegram */
.slide-telegram {
  background: linear-gradient(135deg, #0e2a4a 0%, #07172b 100%);
}

/* Slide 3: WhatsApp */
.slide-whatsapp {
  background: linear-gradient(135deg, #0d311d 0%, #061d11 100%);
}

.sh-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(246, 116, 10, 0.2);
  border: 1px solid rgba(246, 116, 10, 0.4);
  color: #FFA34D;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  width: fit-content;
  text-transform: uppercase;
}

.pill-tg {
  background: rgba(0, 136, 204, 0.22);
  border-color: rgba(56, 189, 248, 0.45);
  color: #38BDF8;
}

.pill-wa {
  background: rgba(37, 211, 102, 0.2);
  border-color: rgba(37, 211, 102, 0.45);
  color: #4ADE80;
}

.sh-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(15px, 3.2vw, 22px);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.25;
  margin: 0;
}

.sh-hero-title span {
  color: var(--brand-orange);
}

.sh-hero-title span.tg-highlight {
  color: #38BDF8;
}

.sh-hero-title span.wa-highlight {
  color: #4ADE80;
}

.sh-hero-features {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.sh-feature-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11.5px;
  color: #CBD5E1;
  font-weight: 500;
}

.sh-hero-badge-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-left: auto;
  transition: transform 0.2s ease;
}

.tg-cta {
  background: #0088CC;
  color: #FFFFFF;
  box-shadow: none;
}

.wa-cta {
  background: #25D366;
  color: #FFFFFF;
  box-shadow: none;
}

.sh-hero-dots {
  position: absolute;
  bottom: 8px;
  right: 14px;
  display: flex;
  gap: 5px;
  z-index: 10;
}

.sh-hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sh-hero-dot.active {
  width: 18px;
  background: var(--brand-orange);
}

@media (max-width: 600px) {
  .sh-hero-slide {
    padding: 14px 14px 18px 14px;
  }
  .sh-hero-badge-cta {
    margin-left: 0;
    margin-top: 2px;
  }
  .sh-hero-dots {
    bottom: 6px;
    right: 10px;
  }
}

/* ==========================================================================
   PRODUCTS COUNT & SORTING BAR
   ========================================================================== */
.sh-products-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 2px 12px;
  gap: 12px;
}

.sh-products-count-heading {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: #1E293B;
  margin: 0;
  letter-spacing: -0.3px;
}

.sh-products-count-heading span {
  color: var(--brand-orange);
}

.sh-sort-select {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 12.5px;
  font-weight: 600;
  color: #334155;
  outline: none;
  cursor: pointer;
  transition: all 0.2s;
}

.sh-sort-select:focus {
  border-color: var(--brand-orange);
}

/* ==========================================================================
   3. PRODUCT GRID - STRICT 2-COLUMN ON MOBILE (EXACT ARSH GAMESHOP)
   ========================================================================== */
.sh-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); /* Exactly 2 columns on mobile */
  gap: 10px;
  width: 100%;
  margin-bottom: 30px;
}

@media (min-width: 640px) {
  .sh-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }
}

@media (min-width: 1024px) {
  .sh-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (min-width: 1280px) {
  .sh-product-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
  }
}

/* Product Card - Flat & Stable (No Hover Lift, No Outer Shadow) */
.sh-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  box-shadow: none;
  min-width: 0;
  width: 100%;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.sh-card:hover {
  border-color: #CBD5E1;
  box-shadow: none;
  transform: none;
}

/* Discount Badge */
.sh-badge-discount {
  position: absolute;
  top: 6px;
  right: 6px;
  background-color: var(--product-discount-tag-background);
  color: var(--product-discount-tag-color);
  font-size: 9.5px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  z-index: 2;
  box-shadow: none;
  text-transform: uppercase;
}

/* Product Image Box */
.sh-card-image-box {
  width: 100%;
  padding-top: 85%;
  position: relative;
  background: #F8FAFC;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 8px;
}

.sh-card-image-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.sh-card-delivery-tag {
  position: absolute;
  bottom: 4px;
  left: 4px;
  background: rgba(15, 23, 42, 0.8);
  color: #34D399;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 3px;
}

/* Card Content Details */
.sh-card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.sh-card-category-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--brand-orange);
  letter-spacing: 0.4px;
  margin-bottom: 3px;
}

.sh-card-title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: #1E293B;
  line-height: 1.3;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 34px;
}

@media (min-width: 600px) {
  .sh-card-title {
    font-size: 14px;
    min-height: 36px;
  }
}

.sh-card-subtitle {
  font-size: 11px;
  color: #64748B;
  line-height: 1.3;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Pricing Row */
.sh-card-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: auto;
  margin-bottom: 10px;
}

.sh-current-price {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: var(--product-price-color);
}

@media (min-width: 600px) {
  .sh-current-price {
    font-size: 17px;
  }
}

.sh-original-price {
  font-size: 11px;
  color: var(--text-light);
  text-decoration: line-through;
  font-weight: 500;
}

/* Buy Now WhatsApp Button on Card */
.btn-card-buy-wa {
  width: 100%;
  height: 36px;
  background: #25D366;
  color: #FFFFFF;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: none;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.btn-card-buy-wa:hover {
  background: #1EBD5A;
  transform: none;
  box-shadow: none;
}

.btn-card-buy-wa svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Empty State */
.sh-no-products {
  grid-column: 1 / -1;
  background: #FFFFFF;
  border: 1px dashed var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px 20px;
  text-align: center;
}

/* ==========================================================================
   4. HOW IT WORKS & TRUST SECTION
   ========================================================================== */
.sh-info-section {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.sh-info-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: #1E293B;
  text-align: center;
  margin-bottom: 18px;
}

.sh-info-title span {
  color: var(--brand-orange);
}

.sh-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 768px) {
  .sh-steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

.sh-step-card {
  background: #F8FAFC;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.sh-step-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-orange-light);
  color: var(--brand-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  flex-shrink: 0;
}

.sh-step-text h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 3px;
}

.sh-step-text p {
  font-size: 12px;
  color: #64748B;
  line-height: 1.4;
}

/* ==========================================================================
   5. FOOTER
   ========================================================================== */
.sh-footer {
  background: var(--header-main);
  color: #FFFFFF;
  padding: 20px 16px 16px;
  margin-top: 24px;
}

@media (min-width: 768px) {
  .sh-footer {
    padding: 24px 20px 20px;
  }
}

.sh-footer-inner {
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: center;
  align-items: center;
}

.sh-footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 3px;
  letter-spacing: 0.3px;
}

.sh-footer-brand p {
  font-size: 11px;
  color: #94A3B8;
  line-height: 1.4;
  max-width: 340px;
  margin: 0 auto;
}

.sh-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 10px;
  margin-top: 12px;
  text-align: center;
  font-size: 9.5px;
  color: #64748B;
  letter-spacing: 0.2px;
}

/* ==========================================================================
   6. MOBILE STICKY BOTTOM APP BAR (EXACT SHOOPY)
   ========================================================================== */
.sh-bottom-nav {
  display: none !important;
}

.sh-bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--bottom-nav-not-selected);
  font-size: 10.5px;
  font-weight: 600;
  flex: 1;
  height: 100%;
  cursor: pointer;
  position: relative;
  transition: color 0.15s;
}

.sh-bottom-nav-item.active {
  color: var(--bottom-nav-selected);
}

.sh-bottom-nav-item svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
}

.sh-bottom-nav-badge {
  position: absolute;
  top: 4px;
  right: calc(50% - 16px);
  background: #25D366;
  color: #FFFFFF;
  font-size: 9px;
  font-weight: 800;
  padding: 1px 4px;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   7. WHATSAPP ORDER POPUP MODAL
   ========================================================================== */
.sh-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}

.sh-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.sh-modal-box {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  max-width: 440px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  transform: scale(0.95);
  transition: transform 0.25s ease;
}

.sh-modal-overlay.active .sh-modal-box {
  transform: scale(1);
}

.sh-modal-header {
  padding: 14px 18px;
  background: var(--header-main);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sh-modal-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sh-modal-close {
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  cursor: pointer;
}

.sh-modal-body {
  padding: 18px;
}

.sh-modal-item-preview {
  display: flex;
  gap: 12px;
  background: #F8FAFC;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 12px;
  margin-bottom: 16px;
}

.sh-modal-item-img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  object-fit: contain;
  background: #FFFFFF;
  padding: 2px;
  border: 1px solid var(--border-color);
}

.sh-modal-item-info {
  flex: 1;
}

.sh-modal-item-name {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 3px;
}

.sh-modal-item-price {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: var(--brand-orange);
}

.sh-form-group {
  margin-bottom: 14px;
}

.sh-form-label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 6px;
}

.sh-form-label .required {
  color: #EF4444;
}

.sh-form-input {
  width: 100%;
  border: 1.5px solid var(--border-color);
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 13.5px;
  color: #1E293B;
  outline: none;
  background: #FFFFFF;
  transition: border-color 0.2s;
}

.sh-form-input:focus {
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 3px rgba(246, 116, 10, 0.15);
}

.sh-qty-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-modal-qty {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: #F1F5F9;
  border: 1px solid var(--border-color);
  color: #1E293B;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.btn-modal-qty:hover {
  background: var(--brand-orange-light);
  color: var(--brand-orange);
}

.sh-modal-qty-num {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  min-width: 30px;
  text-align: center;
}

.sh-modal-total-bar {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.sh-modal-total-bar span:first-child {
  font-size: 13px;
  font-weight: 600;
  color: #166534;
}

.sh-modal-total-price {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 900;
  color: #15803D;
}

.btn-modal-submit-wa {
  width: 100%;
  height: 44px;
  background: #25D366;
  color: #FFFFFF;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: none;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.btn-modal-submit-wa:hover {
  background: #1EBD5A;
  transform: none;
  box-shadow: none;
}

/* ==========================================================================
   8. FLOATING WHATSAPP BUTTON (DESKTOP)
   ========================================================================== */
.sh-floating-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 13.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: background-color 0.2s ease;
}

.sh-floating-wa:hover {
  transform: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  background: #1EBD5A;
}

@media (max-width: 959px) {
  .sh-floating-wa {
    display: none; /* Handled by bottom app bar */
  }
}

/* Toast */
.sh-toast {
  position: fixed;
  bottom: calc(var(--bottom-nav-height) + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--header-main);
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 12.5px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.sh-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
