*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  background: #fff;
}

/* ==========================================
   SUP [SIGNUP PAGE] DESIGN SYSTEM
   ========================================== */

.signup-page {
  max-width: 400px;
  margin: 40px auto;
  padding: 30px 24px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 179, 107, 0.1);
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
}

/* =====================
   HEADER
===================== */
.sp-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.sp-brand-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 14px;
  margin-bottom: 10px;
}

.sp-main-title {
  text-align: center;
  color: #1a1a1a;
  font-size: 22px;
  font-weight: 700;
  margin: 0;
}

/* =====================
   PROGRESS BAR
===================== */
.sp-progress-wrap {
  margin-bottom: 28px;
}

.sp-progress-track {
  width: 100%;
  height: 6px;
  background: #e5e7eb;
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 6px;
}

.sp-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #00b36b, #1a7535);
  border-radius: 99px;
  transition: width 0.4s ease;
}

.sp-step-label {
  text-align: right;
  font-size: 11px;
  color: #9ca3af;
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* =====================
   STEP BLOCK
===================== */
.sp-step-block {
  display: flex;
  flex-direction: column;
  animation: fadeIn 0.3s ease;
}

.sp-step-intro {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.sp-step-icon {
  width: 48px;
  height: 48px;
  background: #f0fdf4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sp-step-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 2px;
}

.sp-step-desc {
  font-size: 13px;
  color: #9ca3af;
  margin: 0;
}

/* =====================
   INPUTS
===================== */
.sp-input {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 16px;
  margin-bottom: 16px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.2s ease;
  background: #fff;
}

.sp-input:focus {
  border-color: #00b36b;
  box-shadow: 0 0 0 4px rgba(0, 179, 107, 0.1);
  outline: none;
}

.sp-input-group {
  margin-bottom: 4px;
}

.sp-input-hint {
  font-size: 12px;
  color: #9ca3af;
  margin: -8px 0 16px 4px;
  font-style: italic;
}

/* =====================
   PASSWORD
===================== */
.sp-password-wrap {
  position: relative;
  width: 100%;
}

.sp-eye {
  position: absolute;
  right: 14px;
  top: 16px;
  cursor: pointer;
  color: #9ca3af;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.sp-eye:hover {
  color: #00b36b;
}

/* =====================
   SLUG STATUS + LINK PREVIEW
===================== */
.sp-slug-status {
  padding: 4px 0 6px 4px;
  font-size: 12px;
  min-height: 18px;
  animation: fadeIn 0.3s ease;
}

.sp-link-preview {
  background: #f9fafb;
  border: 1px dashed #d1fae5;
  border-radius: 8px;
  padding: 8px 12px;
  margin-bottom: 16px;
}

.sp-link-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}

.sp-link-code {
  font-size: 12px;
  color: #00b36b;
  font-family: 'Courier New', monospace;
  word-break: break-all;
}

/* =====================
   LOGO UPLOAD
===================== */
.sp-logo-preview-wrap {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  cursor: pointer;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid #00b36b;
}

.sp-logo-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sp-logo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: white;
  font-size: 12px;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.sp-logo-preview-wrap:hover .sp-logo-overlay,
.sp-logo-preview-wrap:active .sp-logo-overlay {
  opacity: 1;
}

.sp-skip-link {
  text-align: center;
  margin-top: 14px;
  font-size: 13px;
  color: #9ca3af;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sp-skip-link:hover {
  color: #00b36b;
}

/* =====================
   BUTTONS
===================== */
.sp-btn-primary {
  width: 100%;
  padding: 15px;
  background: #00b36b;
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 4px 12px rgba(0, 179, 107, 0.2);
  transition: transform 0.2s ease, background 0.2s ease;
}

.sp-btn-primary:active {
  transform: scale(0.98);
}

.sp-btn-primary:disabled {
  background: #a7f3d0;
  cursor: not-allowed;
  box-shadow: none;
}

.sp-btn-ghost {
  flex: 1;
  padding: 15px;
  background: transparent;
  color: #6b7280;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s ease;
}

.sp-btn-ghost:hover {
  border-color: #00b36b;
  color: #00b36b;
}

.sp-btn-row {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.sp-btn-row .sp-btn-primary {
  flex: 2;
}

.sp-btn-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.sp-spinner {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

/* =====================
   STEP 4 — EMAIL SCREEN
===================== */
.sp-email-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 0;
  animation: scaleIn 0.3s ease-out;
}

.sp-email-icon {
  width: 80px;
  height: 80px;
  background: #f0fdf4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.sp-email-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px;
}

.sp-email-sub {
  font-size: 14px;
  color: #6b7280;
  margin: 0 0 4px;
}

.sp-email-address {
  font-size: 15px;
  font-weight: 700;
  color: #00b36b;
  margin: 0 0 16px;
  word-break: break-all;
}

.sp-email-hint {
  font-size: 13px;
  color: #9ca3af;
  line-height: 1.6;
  margin: 0 0 28px;
}

/* =====================
   SHARED / UTILITIES
===================== */
.toast {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 24px;
  border-radius: 8px;
  color: white;
  font-weight: 500;
  z-index: 1000;
  animation: slideDown 0.3s ease;
  white-space: nowrap;
}
.toast.success { background: #10b981; }
.toast.error { background: #ef4444; }

.loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.spinner {
  border: 3px solid #f3f3f3;
  border-top: 3px solid #00b36b;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  animation: spin 0.8s linear infinite;
}

.login-link {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #6b7280;
}

.login-link a {
  color: #00b36b;
  font-weight: 600;
  text-decoration: none;
  margin-left: 4px;
}

/* =====================
   ANIMATIONS
===================== */
@keyframes spin { to { transform: rotate(360deg); } }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
  from { top: -50px; opacity: 0; }
  to { top: 20px; opacity: 1; }
}

@keyframes scaleIn {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 480px) {
  .signup-page {
    margin: 16px 14px;
    padding: 24px 18px;
    border-radius: 14px;
  }
  .sp-main-title { font-size: 20px; }
  .sp-input { font-size: 13px; padding: 13px 14px; }
  .sp-btn-primary, .sp-btn-ghost { font-size: 14px; padding: 14px; }
  .sp-logo-preview-wrap { width: 100px; height: 100px; }
  .sp-email-title { font-size: 20px; }
}

@media (max-width: 360px) {
  .signup-page { padding: 20px 16px; }
  .sp-main-title { font-size: 18px; }
  .sp-input { font-size: 12.5px; }
  .sp-btn-primary, .sp-btn-ghost { font-size: 13px; }
}

@media (min-width: 768px) {
  .signup-page { max-width: 440px; padding: 36px 30px; }
  .sp-main-title { font-size: 24px; }
  .sp-input { font-size: 15px; }
}








/* ==========================================
   LANDING PAGE (LP SYSTEM)✅
   ========================================== */

:root{
  --lp-green:#2ecc71;
  --lp-dark:#111827;
  --lp-border:#e5e7eb;
  --lp-muted:#6b7280;
  --lp-bg:#f8fafc;
}

/* ==========================================
   PAGE ROOT
   ========================================== */
/* Update the Page Root to prevent horizontal scroll */
#lp {
  min-height: 100vh;
  background: var(--lp-bg);
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  flex-direction: column;
  overflow-x: hidden; /* FIX: Prevents swiping right into white space */
  width: 100%;
}

/* ==========================================
   HEADER
   ========================================== */

.lp-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px 18px;
  background:white;
  border-bottom:1px solid var(--lp-border);
  position:sticky;
  top:0;
  z-index:50;
}

.lp-logo{
  font-weight:800;
  font-size:25px;
  color:var(--lp-green);
}

.lp-menu-btn{
  cursor:pointer;
  color:var(--lp-dark);
}

/* ==========================================
   BANNER
   ========================================== */
.lp-banner{
  width:90%;
  max-width:130px;
  margin:15px auto;           /* centers the banner */
  overflow:hidden;

  }

.lp-banner img{
  width:98%;
  height:128px;
  object-fit:cover;
  display:block;
border-radius:500px;    
}
    
/* ==========================================
   SEARCH
   ========================================== */

.lp-search-container{
  padding:16px;
  background:white;
  border-bottom:1px solid var(--lp-border);
}

.lp-search-wrapper{
  display:flex;
  align-items:center;
  gap:8px;
  background:#f1f5f9;
  padding:10px 14px;
  border-radius:10px;
}

.lp-search-icon{
  width:18px;
  height:18px;
  color:#64748b;
}

.lp-search-wrapper input{
  border:none;
  outline:none;
  background:transparent;
  flex:1;
  font-size:14px;
}

  
/* ==========================================
   MAIN GRID
   ========================================== */

/* Update Main Content - Center it and fix box-sizing */
.lp-main {
  padding: 18px;
  max-width: 1200px; /* Increased for better desktop look */
  margin: 0 auto;    /* Centers the main content area */
  width: 100%;
  box-sizing: border-box; /* Ensures padding doesn't push width over 100% */
}

/* Modernize the Grid */
.lp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 12px; /* Tighter gap looks more like a modern app (Instagram style) */
  width: 100%;
}

/* Update Store Card - Remove margin-right: auto */
.lp-card {
  background: white;
  border-radius: 16px; /* Rounder corners = more modern */
  padding: 12px;
  border: 1px solid var(--lp-border); /* Thinner border is more "premium" */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all .2s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02); /* Soft shadow by default */
}
/* ==========================================
   STORE CARD
   ========================================== */



.lp-card:hover{
  transform:translateY(-3px);
  box-shadow:0 6px 14px rgba(0,0,0,0.08);
}

/* tier styling */

.lp-tier-boss{
  border-color:#2ecc71;
}

.lp-tier-hustler{
  border-color:#e5e7eb;
}

/* ==========================================
   CARD HEADER
   ========================================== */

.lp-card-header{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:6px;
  margin-bottom:10px;
}

.lp-brand-name{
  font-weight:700;
  font-size:15px;
}

.lp-badge{
  width:18px;
  height:18px;
  border-radius : 20px;
}
/* ==========================================
   PAGINATION & LOAD MORE STYLES
   ========================================== */

.load-more-spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 0 40px; /* Extra bottom padding for thumb clearance */
  gap: 10px;
  color: #666;
}

.load-more-spinner p {
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0;
  color: #888;
}

/* Small Spinner Animation */
.pp-spin-sm {
  width: 24px;
  height: 24px;
  border: 3px solid rgba(0, 0, 0, 0.1);
  border-top: 3px solid #00b36b; /* Match your brand color */
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* End of List Message */
.end-of-list {
  text-align: center;
  padding: 30px 0 50px;
  color: #999;
}

.end-of-list p {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  display: inline-block;
}

/* Optional: Add decorative lines next to "End of list" */
.end-of-list p::before,
.end-of-list p::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: #ddd;
}

.end-of-list p::before { right: 110%; }
.end-of-list p::after { left: 110%; }

/* Reuse your existing spin keyframe or add this if missing */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* ==========================================
   PROFILE AVATAR
   ========================================== */

.lp-profile-area{
  margin:10px 0;
}

.lp-avatar-ring{
  width:70px;
  height:70px;
  border-radius:50%;
  border:1.2px solid var(--lp-green);
  overflow:hidden;
}

.lp-avatar-ring img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* ==========================================
   STORE INFO
   ========================================== */

.lp-card-info{
  font-size:13px;
  margin-top:6px;
}

.lp-location{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:4px;
  color:var(--lp-muted);
}

.lp-location svg{
  fill:currentColor;
}

/* ==========================================
   STORE STATUS
   ========================================== */

.lp-status{
  margin-top:6px;
  font-size:12px;
  font-weight:600;
}

.lp-status.open-now{
  color:#16a34a;
}

.lp-status.opens-soon{
  color:#f59e0b;
}

.lp-status.closed{
  color:#ef4444;
}

.lp-status.closed-today{
  color:#dc2626;
}

/* ==========================================
   VISIT BUTTON
   ========================================== */

.lp-visit-btn{
  margin-top:12px;
  border:none;
  background:var(--lp-green);
  color:white;
  padding:9px 16px;
  border-radius:8px;
  font-size:13px;
  font-weight:700;
  cursor:pointer;
}

.lp-visit-btn:hover{
  background:#27ae60;
}

/* ==========================================
   SKELETON LOADER
   ========================================== */

.lp-skeleton{
  animation:lpPulse 1.3s infinite;
}

.lp-card-header,
.lp-card-body{
  width:100%;
  height:18px;
  border-radius:6px;
  background:#e5e7eb;
  margin-bottom:10px;
}

.lp-card-body{
  height:80px;
}

@keyframes lpPulse{
  0%{opacity:0.5;}
  50%{opacity:1;}
  100%{opacity:0.5;}
}

/* ==========================================
   NO RESULTS
   ========================================== */

.lp-no-results{
  text-align:center;
  padding:40px;
  color:#64748b;
  font-size:14px;
}


/* ==========================================
   MOBILE TWEAKS
   ========================================== */

@media (max-width:480px) {
  
  .lp-header {
    padding: 14px 14px;
  }
  
  .lp-logo {
    font-size: 22px;
  }
  
  .lp-main {
    padding: 14px;
  }
  
  .lp-grid {
    grid-template-columns: repeat(2, 1fr); 

  }

  .lp-avatar-ring {
    width: 60px;
    height: 60px;
  }
  
}

/* ==========================================
   TABLET
   ========================================== */

@media (min-width:481px) and (max-width:900px) {
  
  .lp-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .lp-banner img {
    height: 140px;
  }
  
}

/* ==========================================
   DESKTOP
   ========================================== */

@media (min-width:901px) {
  
  .lp-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  
  .lp-banner img {
    height: 160px;
  }
  
}


/* ==========================================
   MODE SWITCH BUTTONS
   ========================================== */
.lp-mode-switch {
  display: flex;
  justify-content: center;
  gap: 14px;
  padding: 14px 0;
  background: #fff;
  border-bottom: 1px solid var(--lp-border);
}

.lp-mode-btn {
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  color: var(--lp-muted);
  border: 1px solid var(--lp-border);
  transition: all 0.2s ease;
}

.lp-mode-btn.active {
  color: #fff;
  background: var(--lp-green);
  border-color: var(--lp-green);
}

/* ==========================================
   PRODUCT CARD LITE
   ========================================== */
.product-card-lite {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  padding: 10px;
  border: 1px solid var(--lp-border);
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.product-card-lite:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

/* ==========================================
   PRODUCT IMAGE & DOTS
   ========================================== */
.lp-product-img {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.lp-product-img img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
}

/* Dots for carousel images */
.lp-dots {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.lp-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.2s ease;
}

.lp-dots .dot.active {
  background: #fff;
  width: 8px;
  height: 8px;
}

/* ==========================================
   PRODUCT INFO
   ========================================== */
.lp-product-info {
  margin-top: 8px;
  text-align: center;
}

.lp-product-info h4 {
  font-size: 14px;
  font-weight: 600;
  margin: 4px 0;
  color: var(--lp-dark);
}

.lp-product-info p {
  font-size: 13px;
  font-weight: 500;
  color: var(--lp-green);
}

/* Priority Border for Boss Products */
.product-card-lite.lp-tier-boss {
  border: 1.5px solid #25D366 !important; /* WhatsApp Green */
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.15);
}

/* Placeholder Animation */
@keyframes placeholderSlide {
  0% { opacity: 0; transform: translateY(10px); }
  10% { opacity: 1; transform: translateY(0); }
  90% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-10px); }
}

.lp-search-wrapper input::placeholder {
  transition: all 0.4s ease;
}

/* We will apply this class via JS to trigger the re-animation */
.placeholder-animate::placeholder {
  animation: placeholderSlide 4s infinite;
}



/* ==========================================
   POP – POST PAGE DESIGN SYSTEM
   ========================================== */

:root{
  --pop-green:#2ecc71;
  --pop-dark:#111;
  --pop-border:#e5e7eb;
  --pop-light:#f8fafc;
}

/* ==========================================
   PAGE WRAPPER
   ========================================== */

.pop-page-wrapper{
  min-height:100vh;
  background:#fff;
  font-family:'Segoe UI',sans-serif;
  display:flex;
  flex-direction:column;

  margin:0 auto;
  width:100%;
  box-sizing:border-box;
}

/* ==========================================
   HEADER
   ========================================== */

.pop-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 18px;
  border-bottom:1px solid var(--pop-border);
  background:#fff;

  max-width:600px;
  margin:0 auto;
  width:100%;
}

.pop-back-btn{
  border:none;
  background:none;
  cursor:pointer;
  color:#111;
}

.pop-logo-text{
  font-weight:700;
  font-size:16px;
}

.pop-limit-badge{
  background:var(--pop-light);
  padding:5px 10px;
  border-radius:20px;
  font-size:12px;
  font-weight:600;
}

/* ==========================================
   MAIN CONTENT
   ========================================== */

.pop-main-content{
  flex:1;
  padding:18px;
  max-width:600px;
  margin: 0 auto;
  width:100%;
}

/* ==========================================
   MEDIA UPLOADER
   ========================================== */

.pop-media-uploader{
  margin-bottom:25px;
}

/* ==========================================
   PREVIEW / CAROUSEL
   ========================================== */

.pop-preview-window{
  position:relative;
  overflow:hidden;

  /* prevents page from moving while swiping */
  overscroll-behavior:contain;

  /* allow vertical page scroll but lock horizontal swipe */
  touch-action:pan-y pinch-zoom;
}

.pop-preview-stage{
  position:relative;
  height:280px;
  border-radius:12px;
  overflow:hidden;
  background:#f1f5f9;

  display:flex;
  align-items:center;
  justify-content:center;
}

/* carousel track */

.pop-carousel-track{
  display:flex;
  height:100%;

  transition:transform .32s cubic-bezier(.22,.61,.36,1);

  will-change:transform;
  transform:translate3d(0,0,0);
}

/* slides */

.pop-carousel-slide{
  min-width:100%;
  height:100%;

  display:flex;
  align-items:center;
  justify-content:center;

  user-select:none;
}

.pop-carousel-slide img{
  width:100%;
  height:100%;
  object-fit:contain;

  pointer-events:none;
  -webkit-user-drag:none;
}

/* ==========================================
   EMPTY PREVIEW
   ========================================== */

.pop-empty-preview{
  text-align:center;
  color:#94a3b8;
  font-size:14px;
}

.pop-empty-preview svg{
  margin-bottom:10px;
}

/* delete bubble */

.pop-delete-bubble{
  position:absolute;
  top:10px;
  right:10px;
  width:34px;
  height:34px;
  border:none;
  background:rgba(0,0,0,0.6);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

/* ==========================================
   CAROUSEL DOTS
   ========================================== */

.pop-carousel-dots{
  display:flex;
  justify-content:center;
  gap:6px;
  margin-top:10px;
}

.pop-dot{
  width:8px;
  height:8px;
  background:#cbd5e1;
  border-radius:50%;
  transition:background .2s ease, transform .2s ease;
}

.pop-dot.active{
  background:var(--pop-green);
  transform:scale(1.2);
}

/* ==========================================
   THUMBNAIL STRIP
   ========================================== */

.pop-thumb-strip{
  display:flex;
  gap:8px;
  overflow-x:auto;
  padding:10px 2px;
  margin-top:8px;

  scroll-behavior:smooth;
  overscroll-behavior-x:contain;
}

.pop-thumb-strip::-webkit-scrollbar{
  display:none;
}

.pop-thumb{
  width:52px;
  height:52px;
  border-radius:8px;
  overflow:hidden;
  flex-shrink:0;
  cursor:pointer;
  border:2px solid transparent;
  background:#f1f5f9;
  transition:border .18s ease, transform .18s ease;
}

.pop-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.pop-thumb.active{
  border-color:var(--pop-green);
  transform:scale(1.05);
}

/* ==========================================
   UPLOAD BUTTON
   ========================================== */

.pop-upload-actions{
  display:flex;
  justify-content:center;
  margin-top:14px;
}

.pop-btn-upload{
  display:flex;
  align-items:center;
  gap:8px;
  border:none;
  background:var(--pop-green);
  color:#fff;
  padding:10px 16px;
  border-radius:8px;
  font-weight:600;
  cursor:pointer;
}

.pop-btn-upload:disabled{
  opacity:.6;
  cursor:not-allowed;
}

/* ==========================================
   FORM BODY
   ========================================== */

.pop-form-body{
  margin-top:20px;
}

.pop-input-group{
  margin-bottom:18px;
}

.pop-label{
  display:block;
  font-size:13px;
  font-weight:600;
  margin-bottom:6px;
}

.pop-input-field{
  width:100%;
  padding:11px;
  border:1px solid var(--pop-border);
  border-radius:8px;
  font-size:14px;
  box-sizing:border-box;
}

.pop-input-field:focus{
  border-color:var(--pop-green);
  outline:none;
}

/* ==========================================
   SAVE BUTTON
   ========================================== */

.pop-btn-save{
  width:100%;
  border:none;
  background:var(--pop-green);
  color:#fff;
  padding:12px;
  border-radius:10px;
  font-weight:700;
  cursor:pointer;
}

.pop-btn-save:disabled{
  opacity:.7;
  cursor:not-allowed;
}

/* loader inside button */

.pop-loader-flex{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
}

.pop-spin-small{
  width:14px;
  height:14px;
  border:2px solid rgba(255,255,255,.4);
  border-top:2px solid #fff;
  border-radius:50%;
  animation:popspin .7s linear infinite;
}

/* ==========================================
   MODAL
   ========================================== */

.pop-modal-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.4);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:1000;
}

.pop-modal-box{
  background:#fff;
  padding:20px;
  border-radius:12px;
  width:90%;
  max-width:320px;
  text-align:center;
}

.pop-modal-box h3{
  margin-bottom:6px;
}

.pop-modal-box p{
  font-size:13px;
  color:#666;
}

.pop-modal-btns{
  display:flex;
  gap:10px;
  justify-content:center;
  margin-top:16px;
}

.pop-btn-cancel{
  border:none;
  background:#e5e7eb;
  padding:9px 14px;
  border-radius:8px;
  cursor:pointer;
}

/* ==========================================
   TOAST
   ========================================== */

.pop-toast{
  position:fixed;
  bottom:25px;
  left:50%;
  transform:translateX(-50%);
  background:#111;
  color:#fff;
  padding:10px 20px;
  border-radius:30px;
  font-size:13px;
  z-index:1200;
}

.pop-toast-error{
  background:#e74c3c;
}

/* ==========================================
   GLOBAL LOADER
   ========================================== */

.pop-loader{
  position:fixed;
  inset:0;
  background:rgba(255,255,255,0.8);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:2000;
}

.pop-spin{
  width:32px;
  height:32px;
  border:3px solid #e5e7eb;
  border-top:3px solid var(--pop-green);
  border-radius:50%;
  animation:popspin .8s linear infinite;
}

@keyframes popspin{
  to{ transform:rotate(360deg); }
}



/*[Note: This is a new css]*/
/* ==========================================
   RESPONSIVENESS BLOCK (ADD TO BOTTOM)
   ========================================== */

/* Large Screens (Desktops/Monitors) */
@media screen and (min-width: 1024px) {
    .pop-preview-stage {
        height: 400px; /* Taller preview for larger screens */
    }
    .pop-main-content {
        padding: 40px 18px; /* More breathing room */
    }
}

/* Tablets & Small Laptops */
@media screen and (max-width: 768px) {
    .pop-preview-stage {
        height: 320px;
    }
    .pop-header {
        padding: 12px 15px;
    }
}

/* Mobile Devices (Phones) */
@media screen and (max-width: 480px) {
    .pop-preview-stage {
        height: 250px; /* Compact height for small phones */
        border-radius: 8px;
    }
    
    .pop-logo-text {
        font-size: 14px;
    }

    .pop-btn-save {
        padding: 14px; /* Larger tap target for thumbs */
        font-size: 16px;
    }

    .pop-input-field {
        font-size: 16px; /* Prevents iOS from zooming in on input focus */
        padding: 12px;
    }

    .pop-thumb {
        width: 48px;
        height: 48px;
    }
}

/* Extra Small Devices (Old iPhones/Small Androids) */
@media screen and (max-width: 320px) {
    .pop-preview-stage {
        height: 200px;
    }
    .pop-header {
        flex-direction: row;
        gap: 5px;
    }
    .pop-limit-badge {
        font-size: 10px;
        padding: 3px 8px;
    }
}

/* High-DPI / Retinal Adjustment (Optional but recommended) */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .pop-page-wrapper {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Landscape Mode Fix (For phones turned sideways) */
@media screen and (max-height: 500px) and (orientation: landscape) {
    .pop-preview-stage {
        height: 180px;
    }
    .pop-main-content {
        padding: 10px;
    }
}


    
/* ==========================================
  PP [PROFILE PAGE] DESIGN SYSTEM
   ========================================== */

:root{
  --pp-green:#2ecc71;
  --pp-dark:#111;
  --pp-light-gray:#f8f9fa;
  --pp-border:#eeeeee;
}

/* ==========================================
   GLOBAL LAYOUT
   ========================================== */

.pp-page-wrapper{
  background:#fff;
  min-height:100vh;
  font-family:sans-serif;
  color:#111;
}

/* ==========================================
   HEADER
   ========================================== */

.pp-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px 20px;
  border-bottom:1px solid var(--pp-border);
  position:sticky;
  top:0;
  background:#fff;
  z-index:10;
}

.pp-logo-text{
  font-weight:800;
  font-size:1.2rem;
}

.pp-hamburger{
  font-size:22px;
  cursor:pointer;
}

/* ==========================================
   IDENTITY SECTION
   ========================================== */

.pp-identity-section{
  text-align:center;
  padding:28px 20px 10px;
}

.pp-avatar-wrap{
  position:relative;
  width:110px;
  margin:auto;
}

.pp-avatar-img{
  width:110px;
  height:110px;
  border-radius:50%;
  object-fit:cover;
  border:3px solid var(--pp-green);
  padding:3px;
}

.pp-upload-badge{
  position:absolute;
  bottom:0;
  right:0;
  background:var(--pp-dark);
  color:#fff;
  width:34px;
  height:34px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:16px;
  cursor:pointer;
}

.pp-brand-display{
  margin-top:14px;
}

.pp-brand-name{
  font-size:22px;
  font-weight:700;
  margin:0;
}

.pp-plan-pill{
  display:inline-block;
  margin-top:6px;
  padding:4px 12px;
  border-radius:20px;
  font-size:11px;
  font-weight:700;
}
/* The Hustler badge - Simple and clean */
.pp-tier-hustler {
  background: #f1f5f9;
  color: #64748b;
  border: 1px solid #e2e8f0;
}

/* The BOSS badge - Premium and eye-catching */
.pp-tier-boss {
  background: linear-gradient(135.2deg, #eab308 0%, #ca8a04 100%); /* Gold gradient */
  color: white;
  font-weight: 800;
  box-shadow: 0 2px 10px rgba(234, 179, 8, 0.3);
  text-transform: uppercase;
}
.pp-btn-ghost{
  margin-top:12px;
  border:1px solid var(--pp-border);
  padding:8px 16px;
  border-radius:20px;
  background:#fff;
  font-size:13px;
  cursor:pointer;
}

/* ==========================================
   STATS RIBBON
   ========================================== */

.pp-stats-ribbon{
  display:flex;
  gap:10px;
  padding:20px;
}

.pp-stat-card{
  flex:1;
  background:#fff;
  border:1px solid var(--pp-border);
  border-radius:12px;
  padding:14px;
  text-align:center;
  cursor:pointer;
}

.pp-stat-value{
  font-weight:700;
  font-size:18px;
  display:block;
}

.pp-stat-label{
  font-size:12px;
  color:#777;
}

/* ==========================================
   ACTION GRID
   ========================================== */

.pp-action-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
  padding:0 20px 20px;
}

.pp-action-btn{
  border:1px solid var(--pp-border);
  background:#fff;
  padding:14px 8px;
  border-radius:12px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
  font-size:12px;
  font-weight:600;
  cursor:pointer;
}

.pp-action-btn i{
  font-size:20px;
}

.pp-action-btn.primary{
  background:var(--pp-green);
  color:#fff;
  border:none;
}

/* ==========================================
   INVENTORY MANAGER
   ========================================== */

.pp-inventory-manager{
  border-top:6px solid var(--pp-light-gray);
  padding:20px;
}

.pp-manager-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:15px;
}

.pp-manager-header h3{
  margin:0;
  font-size:18px;
}

/* usage bar */

.pp-usage-container{
  text-align:right;
}

.pp-usage-text{
  font-size:11px;
  color:#777;
}

.pp-progress-bar{
  width:120px;
  height:6px;
  background:#eee;
  border-radius:10px;
  overflow:hidden;
  margin-top:4px;
}

.pp-progress-fill{
  height:100%;
  background:var(--pp-green);
  transition:width .3s ease;
}

/* ==========================================
   INVENTORY LIST
   ========================================== */

.pp-manage-list{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.pp-manage-item{
  display:flex;
  align-items:center;
  border:1px solid var(--pp-border);
  border-radius:12px;
  padding:10px;
  gap:10px;
}

.pp-manage-thumb{
  width:55px;
  height:55px;
  object-fit:cover;
  border-radius:8px;
}

.pp-manage-details{
  flex:1;
  display:flex;
  flex-direction:column;
}

.pp-item-title{
  font-size:14px;
  font-weight:600;
}

.pp-item-price{
  font-size:13px;
  color:var(--pp-green);
  font-weight:700;
}

.pp-manage-actions{
  display:flex;
  gap:6px;
}

.pp-icon-btn{
  border:none;
  background:#f5f5f5;
  width:32px;
  height:32px;
  border-radius:8px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.pp-icon-btn.delete{
  color:#e74c3c;
}

/* ==========================================
   EMPTY STATE
   ========================================== */

.pp-empty-state{
  text-align:center;
  padding:40px 10px;
  color:#777;
}

.pp-empty-state i{
  font-size:40px;
  margin-bottom:10px;
}

.pp-empty-state button{
  margin-top:10px;
  padding:8px 16px;
  background:var(--pp-green);
  color:white;
  border:none;
  border-radius:8px;
}

/* ==========================================
   MODALS
   ========================================== */

.pp-modal-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.4);
  display:flex;
  justify-content:center;
  align-items:center;
  z-index:1000;
}

.pp-modal-box{
  background:white;
  width:90%;
  max-width:400px;
  border-radius:14px;
  padding:20px;
}

.pp-input-group{
  margin-bottom:12px;
}

.pp-input-group label{
  font-size:12px;
  color:#666;
  display:block;
  margin-bottom:4px;
}

.pp-input-field{
  width:100%;
  padding:10px;
  border:1px solid #ddd;
  border-radius:8px;
}

.pp-modal-btns{
  display:flex;
  justify-content:flex-end;
  gap:10px;
  margin-top:12px;
}

.pp-btn-save{
  background:var(--pp-green);
  color:white;
  border:none;
  padding:8px 16px;
  border-radius:8px;
}

.pp-btn-cancel{
  border:none;
  background:#eee;
  padding:8px 16px;
  border-radius:8px;
}
.pp-logo-prompt {
  background: #f0fdf4;
  border-bottom: 1px solid #d1fae5;
  padding: 10px 16px;
}

.pp-logo-prompt-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #1a7535;
  font-weight: 500;
}

.pp-logo-prompt-inner button {
  margin-left: auto;
  background: #1a7535;
  color: white;
  border: none;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.pp-prompt-close {
  cursor: pointer;
  font-size: 18px;
  color: #9ca3af;
  line-height: 1;
  margin-left: 4px;
}

/* ==========================================
   UPGRADE FOOTER
   ========================================== */

.pp-upgrade-footer{
  position:fixed;
  bottom:0;
  left:0;
  right:0;
  background:var(--pp-green);
  color:white;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:8px;
  padding:14px;
  font-weight:700;
  cursor:pointer;
}

/* ==========================================
   TOAST + LOADER
   ========================================== */

.pp-toast{
  position:fixed;
  bottom:30px;
  left:50%;
  transform:translateX(-50%);
  background:#111;
  color:#fff;
  padding:10px 24px;
  border-radius:30px;
  font-size:13px;
  z-index:2000;
}

.pp-toast-error{
  background:#e74c3c;
}

.pp-loader{
  position:fixed;
  inset:0;
  background:rgba(255,255,255,0.85);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:3000;
}

/* Inline Upgrade Link */
.pp-inline-upgrade {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(255, 215, 0, 0.1); /* Subtle gold tint */
  transition: all 0.2s ease;
}

.pp-inline-upgrade span {
  font-size: 11px;
  font-weight: 700;
  color: #d4af37; /* Gold/Bronze color */
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pp-inline-upgrade svg {
  color: #d4af37;
  display: block;
}

.pp-inline-upgrade:hover {
  background: rgba(255, 215, 0, 0.2);
  transform: translateY(-1px);
}

/* Positioning fix for the Header Meta area */
.pp-manager-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end; /* Keeps title and upgrade link aligned */
  margin-bottom: 12px;
  gap: 8px;
}

.pp-usage-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pp-spin{
  width:32px;
  height:32px;
  border:3px solid #eee;
  border-top:3px solid var(--pp-green);
  border-radius:50%;
  animation:ppspin .8s linear infinite;
}

@keyframes ppspin{
  to{transform:rotate(360deg);}
}

.pp-sheet-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: flex-end;
  z-index: 1000;
}

.pp-action-sheet {
  width: 100%;
  background: #fff;
  border-radius: 20px 20px 0 0;
  padding: 16px;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.pp-sheet-handle {
  width: 40px;
  height: 4px;
  background: #e2e8f0;
  border-radius: 2px;
  margin: 0 auto 12px;
}

.pp-sheet-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: none;
  background: none;
  font-size: 16px;
  border-bottom: 1px solid #f1f5f9;
}

.pp-sheet-item.danger { color: #ef4444; }

.pp-sheet-close {
  width: 100%;
  padding: 12px;
  margin-top: 8px;
  border: none;
  background: #f8fafc;
  border-radius: 12px;
  font-weight: 600;
}

.pp-dots-btn {
  /* Reset defaults */
  background: transparent;
  border: none;
  cursor: pointer;
  
  /* Layout */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 50%; /* Makes the background a circle */
  
  /* Color - Use a soft Slate or Charcoal */
  color: #475569; 
  transition: all 0.2s ease;
}

/* Subtle feedback on hover (for desktop) */
.pp-dots-btn:hover {
  background-color: #f1f5f9; /* Very light gray */
  color: #000;
}

/* Tap feedback (for mobile) */
.pp-dots-btn:active {
  background-color: #e2e8f0;
  transform: scale(0.92); /* Slight shrink effect when pressed */
}


/*[Note: This is a new css]*/
/* ==========================================
   PP RESPONSIVENESS BLOCK (ADD TO BOTTOM)
   ========================================== */

/* Desktop & Large Screens */
@media screen and (min-width: 1024px) {
    .pp-page-wrapper {
        max-width: 800px; /* Centers the profile content */
        margin: 0 auto;
        border-left: 1px solid var(--pp-border);
        border-right: 1px solid var(--pp-border);
        box-shadow: 0 0 50px rgba(0,0,0,0.02);
    }

    .pp-action-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px; /* Wider gap for desktop */
    }

    .pp-upgrade-footer {
        max-width: 800px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 12px 12px 0 0;
    }
}

/* Tablets */
@media screen and (max-width: 768px) {
    .pp-brand-name {
        font-size: 20px;
    }
    
    .pp-action-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }

    .pp-action-btn {
        padding: 12px 5px;
        font-size: 11px;
    }
}

/* Mobile Devices (Phones) */
@media screen and (max-width: 480px) {
    .pp-action-grid {
        grid-template-columns: repeat(2, 1fr); /* 2x2 grid is easier to tap on phones */
    }

    .pp-avatar-wrap {
        width: 100px;
    }

    .pp-avatar-img {
        width: 100px;
        height: 100px;
    }

    .pp-stat-value {
        font-size: 16px;
    }

    .pp-manage-item {
        padding: 8px;
    }

    .pp-manage-thumb {
        width: 48px;
        height: 48px;
    }

    .pp-input-field {
        font-size: 16px; /* Prevents auto-zoom on iOS */
    }
}

/* Very Small Devices (320px) */
@media screen and (max-width: 320px) {
    .pp-stats-ribbon {
        flex-direction: column; /* Stack stats if the screen is too narrow */
    }

    .pp-action-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Fix for overlapping content at the bottom due to fixed footer */
.pp-inventory-manager {
    padding-bottom: 80px; /* Ensures footer doesn't hide the last item */
}



/* ==========================================
   SP [STORE PAGE] DESIGN SYSTEM
   ========================================== */

/* ---------- VARIABLES ---------- */
:root {
  --sp-green: #2ecc71;
  --sp-dark: #111827;
  --sp-border: #e5e7eb;
  --sp-muted: #6b7280;
  --sp-bg: #f8fafc;
  --sp-card-radius: 12px;
  --transition-fast: .18s;
}

/* ==========================================
   PAGE ROOT
   ========================================== */
#sp-root {
  min-height: 100vh;
  background: var(--sp-bg);
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  flex-direction: column;
  padding-bottom: 40px;
}

/* ==========================================
   LOADER
   ========================================== */
.lp-loader {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
}
.pp-spin {
  border: 4px solid #f3f3f3;
  border-top: 4px solid var(--sp-green);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  animation: spin 1s linear infinite;
}
@keyframes spin { 100% { transform: rotate(360deg); } }

/* ==========================================
   TOP HEADER
   ========================================== */
.top-headerX {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: #fff;
  border-bottom: 1px solid var(--sp-border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.back-btn {
  cursor: pointer;
  display: flex;
  align-items: center;
}

.store-logoX {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--sp-green);
  object-fit: cover;
  margin: 0 12px;
}

.nameX {
  flex: 1;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.verified-badge {
  width: 18px;
  height: 18px;
  border-radius: 20px;
}

.icons-right {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--sp-dark);
  font-size: 16px;
  cursor: pointer;
}

/* ==========================================
   SEARCH INPUT
   ========================================== */
.search-inputX {
  width: 92%;
  max-width: 600px;
  margin: 6px auto;
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--sp-border);
  font-size: 14px;
  outline: none;
  background: #fff;
}

/* ==========================================
   MAIN CONTENT / GRID
   ========================================== */
.sp-main-content {
  max-width: 1000px;
  padding: 18px;
}

.product-grid {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  margin-bottom: 22px;
}

/* =========================
   PRODUCT CARD
========================= */
.product-card {
  background: #fff;
  border-radius: var(--sp-card-radius);
  padding: 20px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 2.8px;
  min-height: 180px;
  transition: transform var(--transition-fast) ease, box-shadow var(--transition-fast) ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.15);
}

/* =========================
   PRODUCT IMAGE
========================= */
.product-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  background: linear-gradient(90deg, rgba(0,0,0,0.03), rgba(0,0,0,0.01));
  transition: transform .22s ease;
}

.product-card:hover .product-img {
  transform: scale(1.03);
}

/* =========================
   THUMBNAILS
========================= */
.product-thumbs {
  display: flex;
  gap: 6px;
  padding: 6px 0;
  overflow-x: auto;
}

.product-thumbs::-webkit-scrollbar {
  display: none;
}

.product-thumbs img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border .15s ease, transform .15s ease;
}

.product-thumbs img:hover {
  transform: scale(1.05);
  border-color: var(--sp-green);
}

/* =========================
   PRODUCT INFO
========================= */
.product-info {
  display: flex;
  flex-direction: column;
  gap: 7.5px;
}

.product-title {
  font-size: 14px;
  font-weight: 600;
  margin-top: 8px;
  color: #222;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--sp-green);
}

/* =========================
   ACTION BUTTONS
========================= */
.product-actions {
  display: flex;
  gap: 8px;
  margin-top: px;
}

.product-actions {
  flex: 1;
  border: none;
  border-radius: 6px;
  padding: 6px 8px;
  font-size: 12px;
  cursor: pointer;
  transition: background .15s ease, transform .1s ease;
}

.product-actions button:active {
  transform: scale(0.96);
}

.btn-shareX {
  background: #f0f0f0;
  color: #333;
padding: 4px 6px;
flex: 1;
border: none;
border-radius: 6px;
 cursor: pointer;
transition: background .15s ease,
transform .1s ease;
}

.btn-shareX:hover {
  background: #e2e2e2;
}

.view-btn {
  padding: 4px 2px;
  width:100%;
  background-color:#00b14f;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.view-btn:hover {
  background: #e2e2e2;
}


/* =========================
   NOT FOUND
========================= */
.not-foundX {
  text-align: center;
  padding: 40px;
  color: var(--sp-muted);
  font-size: 14px;
}

/* =========================
   MODAL
========================= */
.modal-overlayX {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  padding: 16px;
  overflow-y: auto;
}

.modal-contentX {
  background: #fff;
  border-radius: var(--sp-card-radius);
  max-width: 600px;
  width: 100%;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal-image {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 8px;
}

.modal-thumbs {
  display: flex;
  gap: 6px;
  margin-top: 8px;
  overflow-x: auto;
}

.thumbnail {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
}

.thumbnail.active {
  border-color: var(--sp-green);
}

.info-section {
  width: 100%;
  margin-top: 10px;
}

.info-section h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.info-section .price {
  font-size: 14px;
  color: var(--sp-green);
  font-weight: 700;
  margin-bottom: 3px;
}

.info-section .description {
  font-size: 13px;
  color: var(--sp-dark);
}

/* MODAL ACTION BUTTONS */
.action-buttons {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 10px;
  margin-top: 1px;
}

.btn-primaryX,
.btn-callX,
.btn-closeX {
  flex: 1;
  padding: 8px 12px;
  border-radius: 6px;
  border: none;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.btn-primaryX { background: #25d366; color: white; }
.btn-callX { background: #10b981; color: white; }
.btn-closeX { background: #ef4444; color: white; }

/* Floating WhatsApp Button 🚀 */
.floating-wa-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #25D366, #1ebe5d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  z-index: 999;
  transition: all 0.3s ease;
}

/* Hover = glow + lift */
.floating-wa-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 25px rgba(37, 211, 102, 0.5);
}

/* Click feel */
.floating-wa-btn:active {
  transform: scale(0.95);
}

.floating-wa-btn svg {
  display: block;
}
/* Subtle pulsing aura */
.floating-wa-btn::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: pulse 2s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  70% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* Smooth image transition for carousel */
.product-img {
  transition: opacity 0.4s ease-in-out;
}

/* =========================
   STATUS MODAL
========================= */

.status-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

/* ✅ SCROLL-CONTAINED MODAL */
.status-modal-box {
  background: #fff;
  width: 90%;
  max-width: 400px;
  max-height: 85vh;
  overflow-y: auto;
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  scroll-behavior: smooth;
}

/* scrollbar (clean look) */
.status-modal-box::-webkit-scrollbar {
  width: 5px;
}
.status-modal-box::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.2);
  border-radius: 10px;
}

/* =========================
   HEADER (🔥 FIXED IMAGE)
========================= */

.status-header-pro {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

/* 🧠 IMAGE FIX (NO MORE STRETCHING) */
.status-logo-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;      /* 🔥 KEY FIX */
  object-position: center;
  flex-shrink: 0;

  border: 2px solid #ecfdf5;
}

/* text beside logo */
.status-title-group {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.status-modal-title {
  font-weight: 700;
  font-size: 15px;
  color: #111;
}

.status-product-tag {
  font-size: 12px;
  color: #666;
}

/* close button */
.status-modal-close {
  font-size: 20px;
  cursor: pointer;
  padding: 4px;
}

/* =========================
   ACTION GRID
========================= */

.status-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 10px 0 15px;
}

.status-action-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 11px;
  color: #333;
  text-decoration: none;
}

/* icon circle */
.action-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
}

/* brand colors */
.action-icon.wa { color: #25D366; }
.action-icon.cal { color: #3b82f6; }
.action-icon.mal { color: #ef4444; }
.action-icon.shr { color: #10b981; }

/* =========================
   INFO LIST
========================= */

.status-info-list p {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin: 6px 0;
  color: #444;
}

/* divider */
.status-hr {
  border: none;
  border-top: 1px solid #eee;
  margin: 15px 0;
}

/* =========================
   SHOP HOURS
========================= */

.hours-preview {
  background: #f9f9f9;
  padding: 12px;
  border-radius: 12px;
}

.hours-title {
  font-size: 13px;
  margin-bottom: 8px;
}

.mini-hours {
  display: grid;
  gap: 6px;
}

.hour-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #555;
  padding: 6px 8px;
  border-radius: 8px;
  transition: 0.2s ease;
}

/* ✅ TODAY (SHOPVERSE GREEN MAGIC) */
.hour-row.today {
  background: #ecfdf5;
  color: #065f46;
  font-weight: 600;
  border-left: 3px solid #10b981;
}

/* closed inside today */
.hour-row.today .closed-text {
  color: #10b981;
}

.hour-row:hover {
  background: #f1f5f9;
}

.closed-text {
  color: #ff4d4d;
  font-weight: bold;
}

/* ========================= */

.status-modal-body p {
  margin: 6px 0;
  font-size: 13px;
  color: var(--sp-dark);
}
/* =========================
   RESPONSIVE
========================= */

/* Small Phones */
@media (max-width: 480px) {
  .store-logoX { width: 46px; height: 46px; }
  .nameX { font-size: 15px; }
  .sp-main-content { padding: 12px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-img { height: 130px; }
  .product-thumbs img { width: 30px; height: 30px; }
  .product-title { font-size: 12.5px; }
  .product-price { font-size: 14px; }
  .product-actions button { padding: 5px ; font-size: 12px; }
  .modal-contentX { padding: 12px; }
}

/* Large Phones / Small Tablets */
@media (min-width: 481px) and (max-width: 768px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .product-img { height: 150px; }
}

/* Tablets */
@media (min-width: 769px) and (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .product-img { height: 160px; }
}

/* Desktop */
@media (min-width: 1025px) {
  .product-grid { grid-template-columns: repeat(4, 1fr); }
  .product-img { height: 180px; }
}
.toast-popup {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  z-index: 9999;
  font-size: 14px;
  animation: slideUp 0.3s ease;
}
.toast-popup.error { background: #ff4d4d; }
@keyframes slideUp { from { bottom: -50px; } to { bottom: 20px; } }

/* Container for image + dots */
.product-img-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 8px;
}

/* Dots Styling */
.carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
  padding: 5px 10px;
background: rgba(0, 0, 0, 0.2); /* Subtle backing to make dots pop on white images */

    border-radius: 20px;
  backdrop-filter: blur(2px);
}

.dot {
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dot.active {
  background: #ffffff;
  width: 6.2px; /* Longer pill shape for the active one */
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

/* Ensure images don't "jump" during crossfade */
.product-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Sleek Fading Animation */
.fade-fast-enter-active,
.fade-fast-leave-active {
  transition: opacity 0.6s ease;
}

.fade-fast-enter-from,
.fade-fast-leave-to {
  opacity: 0;
}






/* ==========================================
   HAM PAGE DESIGN SYSTEM
========================================== */

.ham-page {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  background-color: #f9fafb;
  color: #333;
  min-height: 100vh;
  max-width: 480px;
  margin: 0 auto;
}

/* =====================
   HEADER
===================== */
.ham-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 10;
}

.ham-back-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #f0fdf4;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #00b36b;
  transition: background 0.2s ease;
}

.ham-back-btn:active {
  background: #dcfce7;
}

.ham-header-title {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
}

/* =====================
   PROFILE CARD
===================== */
.ham-profile-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #fff;
  border-bottom: 1px solid #f3f4f6;
  margin-bottom: 8px;
}

.ham-avatar {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  object-fit: cover;
  border: 2px solid #00b36b;
  flex-shrink: 0;
}

.ham-profile-info {
  flex: 1;
  min-width: 0;
}

.ham-profile-name {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ham-profile-email {
  display: block;
  font-size: 12px;
  color: #9ca3af;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ham-plan-badge {
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

.ham-plan-badge.hustler {
  background: #f0fdf4;
  color: #00b36b;
  border: 1px solid #dcfce7;
}

.ham-plan-badge.boss {
  background: #fefce8;
  color: #ca8a04;
  border: 1px solid #fef08a;
}

/* =====================
   MENU LIST
===================== */
.ham-menu-list {
  padding: 8px 16px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ham-menu-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  cursor: pointer;
  border: 1px solid #f3f4f6;
  transition: all 0.2s ease;
}

.ham-menu-item:active {
  background: #f0fdf4;
  border-color: #dcfce7;
  transform: scale(0.99);
}

.ham-menu-item.admin {
  border-color: #fef08a;
  background: #fefce8;
}

.ham-menu-item.danger {
  border-color: #fee2e2;
}

.ham-menu-item.danger:active {
  background: #fff1f1;
}

/* =====================
   ITEM ICON
===================== */
.ham-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #f0fdf4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ham-item-icon.admin {
  background: #fefce8;
}

.ham-item-icon.danger {
  background: #fff1f2;
}

.ham-item-icon.login {
  background: #f0fdf4;
}

/* =====================
   ITEM LABEL
===================== */
.ham-item-label {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
}

.ham-item-label.danger {
  color: #ef4444;
}

/* =====================
   ITEM ARROW
===================== */
.ham-item-arrow {
  color: #d1d5db;
  flex-shrink: 0;
}

/* =====================
   DIVIDER
===================== */
.ham-divider {
  height: 1px;
  background: #f3f4f6;
  margin: 6px 0;
}

/* =====================
   TOAST
===================== */
.status-toast {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 24px;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  min-width: 220px;
  text-align: center;
  font-size: 14px;
}

.status-toast.success { background: #00b36b; }
.status-toast.error { background: #ef4444; }

.fade-enter-active, .fade-leave-active { transition: opacity 0.4s; }
.fade-enter, .fade-leave-to { opacity: 0; }

/* =====================
   LOGIN MODAL
===================== */
.ham-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 1000;
  padding: 0;
}

.ham-modal {
  background: #fff;
  border-radius: 20px 20px 0 0;
  padding: 24px 24px 36px;
  width: 100%;
  max-width: 480px;
  animation: slideUp 0.3s ease;
}

.ham-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.ham-modal-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.ham-modal-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #6b7280;
}

.ham-modal-close:active {
  background: #e5e7eb;
}

.ham-modal-input {
  width: 100%;
  box-sizing: border-box;
  padding: 13px 16px;
  margin-bottom: 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.2s ease;
  background: #fff;
}

.ham-modal-input:focus {
  border-color: #00b36b;
  box-shadow: 0 0 0 4px rgba(0, 179, 107, 0.1);
  outline: none;
}

.ham-modal-pw-wrap {
  position: relative;
  width: 100%;
}

.ham-modal-eye {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-60%);
  cursor: pointer;
  color: #9ca3af;
  display: flex;
  align-items: center;
}

.ham-modal-eye:active {
  color: #00b36b;
}

.ham-modal-forgot {
  text-align: right;
  margin: 6px 0 18px;
}

.ham-modal-forgot a {
  font-size: 12px;
  color: #00b36b;
  font-weight: 600;
  text-decoration: none;
}

.ham-modal-btn {
  width: 100%;
  padding: 15px;
  background: #00b36b;
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 4px 12px rgba(0, 179, 107, 0.2);
  transition: transform 0.2s ease;
}

.ham-modal-btn:active {
  transform: scale(0.98);
}

.ham-modal-btn:disabled {
  background: #a7f3d0;
  cursor: not-allowed;
  box-shadow: none;
}

.ham-modal-btn-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.ham-modal-spinner {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

.ham-modal-footer {
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: #6b7280;
}

.ham-modal-footer a {
  color: #00b36b;
  font-weight: 700;
  text-decoration: none;
  margin-left: 4px;
}

/* =====================
   ANIMATIONS
===================== */
@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 480px) {
  .ham-menu-list { padding: 8px 12px 32px; }
  .ham-profile-card { padding: 14px 16px; }
  .ham-header { padding: 14px 16px; }
  .ham-item-label { font-size: 13px; }
  .ham-modal { padding: 20px 20px 32px; }
}

/* ==========================================
   STP [SETTINGS PAGE]
   ========================================== */

.settings-page {
  min-height: 100vh;
  background: #f8fafc;
  font-family: 'Poppins', sans-serif;
  display: flex;
  flex-direction: column;
}
.profile-settings-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 15px;
}

.input-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #444;
  margin-bottom: 5px;
}

.input-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
}

.hint-text-sm {
  font-size: 11px;
  color: #888;
  margin-top: 4px;
  font-style: italic;
}

.save-profile-btn, .save-hours-btn {
  background: #00b36b;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  margin-top: 10px;
}
/* ==========================================
   HEADER & NAVIGATION
   ========================================== */

.ham-header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 14px 16px;
  z-index: 10;
}

.ham-title {
  font-size: 17px;
  font-weight: 700;
  color: #111827;
}

.back-icon {
  position: absolute;
  left: 16px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ==========================================
   MEMBERSHIP CARDS (Boss vs Hustler)
   ========================================== */

.plan-card {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none !important;
  color: #fff;
}

.boss-bg {
  background: linear-gradient(135deg, #00b36b 0%, #00804d 100%);
  box-shadow: 0 4px 15px rgba(0, 179, 107, 0.3);
}

.hustler-bg {
  background: linear-gradient(135deg, #4b5563 0%, #1f2937 100%);
}

.plan-badge {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.5px;
  display: block;
}

.plan-desc {
  font-size: 12px;
  opacity: 0.9;
  margin-top: 4px;
  line-height: 1.4;
  max-width: 80%;
}

.upgrade-btn {
  background: #fff;
  color: #111827;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  transition: transform 0.2s;
}

.upgrade-btn:active {
  transform: scale(0.95);
}

/* ==========================================
   SHOP TIMER (BUSINESS HOURS)
   ========================================== */

.hours-grid {
  display: flex;
  flex-direction: column;
  padding: 8px 16px;
}

.day-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
}

.day-row:last-child {
  border-bottom: none;
}

.day-name {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  width: 85px;
}

.time-inputs {
  display: flex;
  align-items: center;
  gap: 8px;
}

.time-inputs input[type="time"] {
  border: 1px solid #e5e7eb;
  padding: 6px;
  border-radius: 6px;
  font-size: 13px;
  font-family: inherit;
  color: #111827;
  background: #f9fafb;
}

.time-inputs input:disabled {
  opacity: 0.4;
  background: #f3f4f6;
}

.time-inputs span {
  font-size: 11px;
  color: #9ca3af;
  font-weight: 600;
}

.closed-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.closed-toggle input {
  accent-color: #ef4444;
  width: 16px;
  height: 16px;
}

.closed-toggle span {
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
}

.save-hours-btn {
  width: calc(100% - 32px);
  margin: 16px;
  background: #00b36b;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 179, 107, 0.2);
}

/* ==========================================
   MAIN CONTAINER & CARDS
   ========================================== */

.settings-container {
  max-width: 650px;
  width: 100%;
  margin: 0 auto;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.settings-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}




.section-label {
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  padding-left: 4px;
}

.settings-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
}

.setting-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  cursor: pointer;
}

.setting-item:hover { background: #f9fafb; }
.setting-item + .setting-item { border-top: 1px solid #f1f5f9; }

.setting-title { font-size: 14px; font-weight: 600; color: #111827; }
.setting-desc { font-size: 12px; color: #6b7280; margin-top: 2px; }

.danger-text { color: #ef4444; }
.danger-border { border-color: #fecaca; }

/* ==========================================
   MODALS & TOASTS
   ========================================== */

.pp-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(2px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  padding: 16px;
}

.pp-modal-box {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 400px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pp-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  z-index: 200;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.pp-toast-success { background: #10b981; }
.pp-toast-error { background: #ef4444; }

/* ==========================================
   MOBILE RESPONSIVENESS
   ========================================== */


@keyframes spin { 100% { transform: rotate(360deg); } }
.pp-spin {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 4px solid #e5e7eb;
  border-top: 4px solid #00b36b;
  animation: spin 1s linear infinite;
}

/* ==========================================
   STP [SETTINGS PAGE] RESPONSIVENESS
   ========================================== */

/* 1. Desktop & Large Screens */
@media screen and (min-width: 1024px) {
    .settings-container {
        padding: 40px 20px;
    }
    .settings-card {
        transition: transform 0.2s ease;
    }
    .settings-card:hover {
        border-color: #00b36b;
    }
}

/* 2. Tablet & Smaller Laptops */
@media screen and (max-width: 768px) {
    .settings-container {
        gap: 20px;
    }
}

/* 3. Mobile Devices - FIX FOR TIMER BLOCK */
@media screen and (max-width: 520px) {
    .day-row {
        flex-direction: column; /* Stack elements vertically for space */
        align-items: flex-start;
        gap: 12px;
        padding: 16px 0;
    }

    .day-name {
        width: 100%; /* Give day name its own line */
        font-size: 15px;
        color: #111827;
    }

    .time-inputs {
        width: 100%;
        justify-content: flex-start;
        gap: 10px;
    }

    .time-inputs input[type="time"] {
        flex: 1; /* Inputs grow to fill space */
        padding: 10px; /* Bigger tap target */
        font-size: 15px;
    }

    .closed-toggle {
        align-self: flex-end; /* Move "Closed" to the right for better thumb reach */
        background: #fef2f2;
        padding: 6px 12px;
        border-radius: 8px;
    }

    .save-hours-btn {
        margin: 16px;
        padding: 16px;
        font-size: 16px; /* Better for mobile visibility */
    }
}

/* 4. Tiny Screens (iPhone SE, etc.) */
@media screen and (max-width: 360px) {
    .ham-title {
        font-size: 15px;
    }
    
    .plan-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .plan-desc {
        max-width: 100%;
    }

    .upgrade-btn {
        width: 100%;
    }
}

/* 5. General Utility Fixes */
.settings-page {
    overflow-x: hidden; /* Prevents any accidental horizontal scrolling */
}

/* Ensure form inputs don't zoom on iOS focus */
.input-group input, 
.pp-input-field, 
.time-inputs input {
    font-size: 16px !important;
}

/* Add padding to the bottom so the last section isn't hugging the screen edge */
.settings-container {
    padding-bottom: 60px;
}


/* ==========================================
   UP [UPGRADE PAGE]
   ========================================== */

/* Hero & Toggle Section */
.upgrade-hero {
  text-align: center;
  padding: 40px 20px;
  background: #f8fafc;
}

.upgrade-hero h2 { font-size: 24px; color: #0f172a; margin-bottom: 8px; }
.upgrade-hero p { color: #64748b; font-size: 15px; }

.plan-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 25px;
  font-weight: 700;
  font-size: 14px;
  color: #64748b;
}

.plan-toggle-wrap span.active { color: #0f172a; }

.toggle-bg {
  width: 52px;
  height: 28px;
  background: #e2e8f0;
  border-radius: 30px;
  position: relative;
  cursor: pointer;
  border: 2px solid #e2e8f0;
  transition: background 0.3s;
}

.toggle-dot {
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.toggle-dot.is-yearly {
  left: 26px;
  background: #00b36b;
}

.save-tag {
  background: #dcfce7;
  color: #166534;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 800;
  margin-left: 4px;
  border: 1px solid #bbf7d0;
}

/* Pricing Table Styles */
.pricing-cards {
  display: flex;
  gap: 20px;
  padding: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.p-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 24px;
  width: 100%;
  max-width: 340px;
  border: 1px solid #e2e8f0;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Visual state for current/inactive plan */
.p-card.disabled_card {
  opacity: 0.7;
  filter: grayscale(0.5);
}

.boss-card {
  border: 2px solid #00b36b;
  box-shadow: 0 20px 40px rgba(0, 179, 107, 0.08);
  transform: scale(1.02); /* Make it stand out slightly */
}

.p-header { font-size: 1.1rem; font-weight: 800; color: #475569; text-transform: uppercase; letter-spacing: 0.5px; }

.p-price {
  font-size: 36px;
  font-weight: 900;
  margin: 15px 0;
  color: #0f172a;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.p-price span { font-size: 14px; color: #64748b; font-weight: 500; }

.p-features { list-style: none; padding: 0; margin: 25px 0; border-top: 1px solid #f1f5f9; padding-top: 20px; }
.p-features li { display: flex; align-items: center; gap: 12px; font-size: 14px; color: #1e293b; margin-bottom: 14px; font-weight: 500; }

.icon-check { width: 18px; stroke: #94a3b8; stroke-width: 3; fill: none; }
.icon-check-gold { width: 18px; stroke: #00b36b; stroke-width: 3; fill: none; }
.icon-x { width: 18px; stroke: #f43f5e; stroke-width: 3; fill: none; }

.boss-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #0f172a; /* Dark tag looks more premium than green */
  color: #00b36b;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 10px;
  font-weight: 900;
  white-space: nowrap;
}

.p-btn {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  border: none;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-btn.disabled { background: #f1f5f9; color: #94a3b8; cursor: not-allowed; }
.boss-btn { background: #00b36b; color: white; box-shadow: 0 4px 12px rgba(0, 179, 107, 0.3); }
.boss-btn:active { transform: scale(0.98); }

/* Small Loader for Button */
.spin-small {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: pp-spin 0.8s linear infinite;
}

@keyframes pp-spin { to { transform: rotate(360deg); } }





/* ==========================================
   ADM [ADMIN DASHBOARD] STYLES
   ========================================== */
.admin-dashboard {
  background: #f8fafc;
  min-height: 100vh;
  padding-bottom: 50px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.admin-header {
  background: #0f172a;
  color: white;
  padding: 25px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-identity h1 { 
  font-size: 20px; 
  margin: 0; 
  letter-spacing: -0.5px;
}

.admin-badge {
  background: #00b36b;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 800;
  display: inline-block;
  margin-bottom: 5px;
  text-transform: uppercase;
}

/* NEW: Header Actions Container */
.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* NEW: Sync Button Styling */
.sync-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #0ea5e9;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  font-size: 13px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 6px -1px rgba(14, 165, 233, 0.3);
}

.sync-btn:hover {
  background: #0284c7;
  transform: translateY(-1px);
}

.sync-btn:active {
  transform: translateY(0);
}

.sync-btn svg { width: 18px; height: 18px; }

.refresh-btn {
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.refresh-btn:hover { background: rgba(255,255,255,0.2); }

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 15px;
  margin-top: -20px;
}

.stat-card {
  background: white;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
  border: 1px solid rgba(226, 232, 240, 0.5);
}

.stat-card label { font-size: 11px; color: #64748b; font-weight: 600; text-transform: uppercase; }
.stat-value { font-size: 26px; font-weight: 800; color: #1e293b; margin-top: 4px; }

.boss-stat { grid-column: span 2; border-left: 4px solid #eab308; }
.stat-sub { font-size: 12px; color: #059669; font-weight: 700; margin-top: 5px; }

/* Table Section */
.admin-controls { padding: 15px; }
.admin-search-wrap input {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  font-size: 14px;
  box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.02);
}

.table-container {
  overflow-x: auto;
  background: white;
  margin: 0 15px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.admin-table th {
  background: #f8fafc;
  text-align: left;
  padding: 14px 12px;
  color: #64748b;
  font-weight: 600;
  border-bottom: 2px solid #f1f5f9;
}

.admin-table td { padding: 14px 12px; border-bottom: 1px solid #f1f5f9; vertical-align: middle; }

.merchant-cell { display: flex; align-items: center; gap: 10px; }
.mini-logo { width: 36px; height: 36px; border-radius: 8px; object-fit: cover; background: #f1f5f9; }
.m-name { font-weight: 700; color: #1e293b; font-size: 14px; }
.m-slug { font-size: 11px; color: #64748b; font-family: monospace; background: #f1f5f9; padding: 2px 4px; border-radius: 4px; }

/* Status Pills */
.status-pill {
  font-size: 10px;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  display: inline-block;
}

.is-boss { background: #fef9c3; color: #854d0e; border: 1px solid #fde047; }
.is-hustler { background: #f1f5f9; color: #475569; border: 1px solid #e2e8f0; }

/* NEW: Expiry Tag */
.expiry-tag {
  font-size: 10px;
  color: #94a3b8;
  margin-top: 6px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.expiry-tag::before {
  content: "•";
  color: #eab308;
  font-size: 14px;
}

.action-btns { display: flex; gap: 8px; }
.action-icon {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 6px;
  border-radius: 6px;
  cursor: pointer;
  color: #64748b;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.action-icon:hover { 
  background: white; 
  color: #0f172a; 
  border-color: #cbd5e1;
}

.action-icon svg { width: 18px; height: 18px; }

/* Activity Log */
.activity-log { padding: 25px 20px; }
.activity-log h3 { font-size: 14px; color: #1e293b; margin-bottom: 12px; font-weight: 800; }
.log-item {
  background: white;
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 8px;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #f1f5f9;
}
.log-time { color: #94a3b8; font-weight: 700; white-space: nowrap; font-family: monospace; }
.log-text strong { color: #0f172a; }

/* Utilities */
.spin { animation: spin 1s linear infinite; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.is-suspended-row { background-color: #fff1f2 !important; }
.suspended-tag {
  color: #ef4444;
  font-size: 10px;
  font-weight: 900;
  margin-top: 6px;
}

/* Note Alert Indicator */
.has-note {
  color: #0ea5e9 !important;
  stroke: #0ea5e9;
}


  

/* ==========================================
   FPP & UPP – PASSWORD RESET SYSTEM
========================================== */

/* Page Container */

#pw-reset-system {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
  background: #f9fafb;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  box-sizing: border-box;
}

/* Card */

#pw-reset-system .auth-card {
  background: #fff;
  width: 100%;
  max-width: 400px;
  padding: 32px;
  border-radius: 12px;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  text-align: center;
}

/* Title */

#pw-reset-system h2 {
  margin: 0 0 8px 0;
  color: #111827;
  font-size: 24px;
  font-weight: 700;
}

/* Subtitle */

#pw-reset-system .subtitle {
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 24px;
}

/* Input group */

#pw-reset-system .input-group {
  text-align: left;
  margin-bottom: 20px;
}

/* Label */

#pw-reset-system label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 6px;
}

/* Input */

#pw-reset-system input {
  width: 100%;
  padding: 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color .2s, box-shadow .2s;
  box-sizing: border-box;
}

/* Input focus */

#pw-reset-system input:focus {
  outline: none;
  border-color: #4f46e5;
  box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.2);
}

/* Button */

#pw-reset-system .btn-primary {
  width: 100%;
  background: #000;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color .2s ease;
}

#pw-reset-system .btn-primary:hover {
  background: #333;
}

#pw-reset-system .btn-primary:disabled {
  background: #9ca3af;
  cursor: not-allowed;
}

/* Footer */

#pw-reset-system .auth-footer {
  margin-top: 24px;
  font-size: 14px;
}

/* Link */

#pw-reset-system .link-btn {
  color: #4f46e5;
  cursor: pointer;
  text-decoration: underline;
}

/* Messages */

#pw-reset-system .msg {
  margin-top: 16px;
  padding: 10px;
  border-radius: 6px;
  font-size: 14px;
}

/* Error */

#pw-reset-system .msg.error {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fee2e2;
}

/* Success */

#pw-reset-system .msg.success {
  background: #f0fdf4;
  color: #16a34a;
  border: 1px solid #dcfce7;
}

/* Error state */

#pw-reset-system .error-state {
  margin-bottom: 16px;
}

/* ==========================================
   MOBILE RESPONSIVE
========================================== */

@media (max-width:480px) {
  
  #pw-reset-system {
    padding: 16px;
  }
  
  #pw-reset-system .auth-card {
    padding: 24px;
    border-radius: 10px;
  }
  
  #pw-reset-system h2 {
    font-size: 20px;
  }
  
  #pw-reset-system .subtitle {
    font-size: 13px;
  }
  
  #pw-reset-system input {
    font-size: 15px;
    padding: 11px;
  }
  
  #pw-reset-system .btn-primary {
    font-size: 15px;
    padding: 11px;
  }
  
}

/* ==========================================
   TABLET
========================================== */

@media (min-width:768px) {
  
  #pw-reset-system .auth-card {
    max-width: 420px;
    padding: 36px;
  }
  
}

/* ==========================================
   LARGE SCREENS
========================================== */

@media (min-width:1200px) {
  
  #pw-reset-system .auth-card {
    max-width: 440px;
  }
  
}


/* ==========================================
   FAQS PAGE DESIGN SYSTEM
   ========================================== */

.faqs-page {
  padding: 18px;
  min-height: 100vh;
  background: #111;
  color: #e5e7eb;
  box-sizing: border-box;
}

/* Section Titles */

.faq-section h3 {
  color: #4CAF50;
  margin-top: 26px;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 600;
}

/* FAQ Item */

.faq-item {
  margin: 8px 0;
  border-radius: 8px;
  overflow: hidden;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
}

/* Question Row */

.question {
  padding: 14px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  
  font-size: 14px;
  font-weight: 500;
  color: #f1f5f9;
  
  transition: background 0.2s ease;
}

.question:hover {
  background: #1f1f1f;
}

/* Answer Section */

.answer {
  padding: 14px;
  font-size: 14px;
  line-height: 1.6;
  
  background: #181818;
  color: #cbd5e1;
  
  border-top: 1px solid #2a2a2a;
}


/* ==========================================
SUPPORT PAGE DESIGN SYSTEM (Contribution Page)
========================================== */

.support-page {
  padding: 16px;
  min-height: 100vh;
  background-color: #121212; /* Dark background */
  color: #eee; /* Base text color */
  font-family: 'Poppins', sans-serif;
}

/* --- Header --- */
.support-header {
  font-size: 26px;
  color: #00b36b;
  text-align: center;
  margin-bottom: 8px;
  font-weight: 600;
}

.support-intro {
  text-align: center;
  font-size: 14px;
  margin-bottom: 24px;
  padding: 0 12px;
  color: #ccc;
  line-height: 1.5;
}

/* --- Donate Toggle Button --- */
.donate-toggle-btn {
  background-color: #00b36b;
  border: none;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 600;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s ease-in-out, transform 0.1s ease-in-out;
}

.donate-toggle-btn:hover {
  background-color: #00d17a;
  transform: scale(1.02);
}

/* --- Donate Options --- */
.donate-options {
  margin-top: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.donate-btn-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 12px auto;
  width: 80%;
  max-width: 300px;
}

.donate-btn {
  background-color: #111;
  border: 1.5px solid #00b36b;
  color: #00b36b;
  border-radius: 6px;
  padding: 12px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  transition: all 0.2s ease-in-out;
}

.donate-btn:hover {
  background-color: #00b36b;
  color: #111;
  transform: translateY(-2px);
}

/* Optional: colored variants for clarity */
.donate-btn.paypal { border-color: #003087; color: #003087; }
.donate-btn.paypal:hover { background-color: #003087; color: #fff; }

.donate-btn.crypto { border-color: #f7931a; color: #f7931a; }
.donate-btn.crypto:hover { background-color: #f7931a; color: #111; }

.donate-btn.bank { border-color: #00b36b; color: #00b36b; }
.donate-btn.bank:hover { background-color: #00b36b; color: #111; }

.donate-note {
  font-size: 12px;
  margin-top: 12px;
  font-style: italic;
  color: #aaa;
}

/* --- Other Support --- */
.other-support {
  margin-top: 36px;
  text-align: center;
}

.other-support h3 {
  color: #00b36b;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 12px;
}

.other-support ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 300px;
}

.other-support li {
  padding: 10px 14px;
  border-bottom: 1px solid #444;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s ease;
  cursor: pointer;
}

.other-support li:hover {
  background-color: #1a1a1a;
}


/* ==========================================
   FUTURE UPGRADE PAGE DESIGN SYSTEM
   ========================================== */
.future-upgrades-page {
  padding: 16px;
  min-height: 100vh;
  font-family: 'Poppins', sans-serif;
  color: #eee;
  background-color: #111; /* dark theme base */
  text-align: center;
}

.future-upgrades-page h1 {
  font-size: 24px;
  color: #00b36b;
  margin-bottom: 8px;
}

.future-upgrades-page p {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 20px;
}

.upgrade-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.upgrade-card {
  background-color: #1a1a1a;
  border: 1px solid #00b36b;
  border-radius: 12px;
  padding: 16px;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  cursor: default;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.upgrade-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 15px rgba(0, 179, 107, 0.5);
}

.upgrade-icon svg {
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  stroke: #00b36b; /* ensures icon color consistency */
}

.upgrade-card h3 {
  font-size: 16px;
  color: #00b36b;
  margin: 0 0 8px;
  text-align: center;
}

.upgrade-card p {
  font-size: 13px;
  color: #ccc;
  line-height: 1.4;
  text-align: center;
  margin: 0;
}
/* ==========================================
   CUSTOMER CARE PAGE DESIGN SYSTEM
   ========================================== */
.customer-care-page {
  padding: 16px;
  min-height: 100vh;
  font-family: 'Poppins', sans-serif;
  color: #eee;
  background-color: #111;
  text-align: center;
}

.cc-header {
  font-size: 24px;
  color: #00b36b;
  margin-bottom: 8px;
}

.cc-intro {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 20px;
  padding: 0 12px;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 30px;
}

.contact-card {
  background-color: #1a1a1a;
  border: 1px solid #00b36b;
  border-radius: 10px;
  padding: 16px;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 179, 107, 0.5);
}

.contact-icon svg {
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
  stroke: #00b36b;
}

.contact-card h3 {
  color: #00b36b;
  margin: 0 0 6px;
}

.contact-card p {
  font-size: 13px;
  color: #ccc;
  margin: 0 0 10px;
}

.contact-btn {
  background-color: #00b36b;
  border: none;
  border-radius: 8px;
  padding: 8px 14px;
  font-weight: bold;
  cursor: pointer;
  color: #111;
  transition: background 0.2s ease-in-out;
}

.contact-btn:hover {
  background-color: #00a060;
}

.help-articles h2 {
  color: #00b36b;
  margin-bottom: 10px;
}

.help-articles ul {
  list-style: none;
  padding: 0;
}

.help-articles li {
  margin-bottom: 8px;
}

.help-articles a {
  color: #ccc;
  text-decoration: none;
}

.help-articles a:hover {
  color: #00b36b;
  text-decoration: underline;
}


/* ==========================================
   ABOUT US PAGE DESIGN SYSTEM
   ========================================== */
.about-us-page {
  padding: 16px;
  min-height: 100vh;
  font-family: 'Poppins', sans-serif;
  color: #eee;
  background-color: #111;
  text-align: center;
}

.about-header {
  font-size: 26px;
  color: #00b36b;
  margin-bottom: 8px;
}

.about-intro {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 25px;
  padding: 0 12px;
}

.about-section {
  margin-bottom: 30px;
  text-align: left;
  padding: 0 12px;
}

.about-section h2 {
  font-size: 20px;
  color: #00b36b;
  margin-bottom: 8px;
}

.about-section p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.team-member {
  background-color: #1a1a1a;
  border: 1px solid #00b36b;
  border-radius: 10px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 179, 107, 0.5);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 8px;
  object-fit: cover;
}

.team-member h3 {
  font-size: 16px;
  color: #00b36b;
  margin: 4px 0 2px;
}

.team-member p {
  font-size: 13px;
  color: #ccc;
  margin: 0;
}



/*Upgrade page*/
.create-account-page {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  background-color: #f9f9f9;
  padding: 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.placeholder-box {
  background-color: #fff;
  border: 2px dashed #00b36b;
  border-radius: 12px;
  padding: 40px 30px;
  max-width: 600px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  text-align: center;
}

.placeholder-box h2 {
  color: #00b36b;
  margin-bottom: 15px;
}

.placeholder-box p {
  color: #555;
  font-size: 16px;
  margin-bottom: 20px;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.contact-buttons button {
  background-color: #00b36b;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.2s all;
}

.contact-buttons button:hover {
  background-color: #009e5f;
}

.pricing-info, .target-audience {
  text-align: left;
  margin-bottom: 20px;
}

.pricing-info h3, .target-audience h3 {
  color: #00b36b;
  margin-bottom: 10px;
}

.pricing-info ul, .target-audience ul {
  list-style-type: disc;
  padding-left: 20px;
  color: #555;
}

.note {
  font-size: 14px;
  color: #777;
  margin-top: 10px;
}
.share-icon svg {
  color: #00b36b; /* your brand green */
  cursor: pointer;
  transition: opacity .2s;
}

.share-icon svg:hover {
  opacity: 0.7;
}