* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background: #ffffff;
  color: #111111;
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #f0f0f0;
}

.header-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  height: 48px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #111111;
}

.brand-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.menu-btn {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}

.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #111;
  border-radius: 2px;
  transition: all 0.25s ease;
}

.menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.page {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 16px 120px;
}

.products-section {
  width: 100%;
}

.section-head {
  margin-bottom: 24px;
}

.section-head h1 {
  font-size: 28px;
  margin-bottom: 6px;
}

.section-head p {
  color: #666666;
  font-size: 15px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 12px;
  background: #f3f3f3;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image {
  transform: scale(1.03);
}

.offer-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #d70000;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
}

.product-info {
  padding-top: 10px;
}

.product-name {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.product-rating {
  font-size: 13px;
  color: #f59e0b;
}

.status-message {
  text-align: center;
  padding: 20px 0;
  color: #555555;
}

.status-message.error {
  color: #d70000;
}

.site-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: #ffffff;
  padding: 6px 16px;
  z-index: 900;
  border-top: 1px solid #f0f0f0;
}

.site-footer.hidden {
  display: none !important;
}


.footer-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 12px;
  color: #8a8a8a;
}

.footer-inner a {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
}

.footer-inner a:visited {
  color: #3b82f6;
}

.footer-inner a:hover {
  text-decoration: none;
}

.cart-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ff5a1f;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 14px;
  z-index: 999;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

.cart-bar.hidden {
  display: none !important;
}

.cart-bar-content {
  width: 100%;
  max-width: 1400px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

#cart-bar-count {
  font-size: 13px;
}

#cart-bar-total {
  font-size: 16px;
  font-weight: 700;
}

.cart-bar-action {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.page-loader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-loader.hidden {
  display: none !important;
}

.loader-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.google-spinner {
  position: relative;
  width: 46px;
  height: 46px;
}

.google-spinner span {
  position: absolute;
  inset: 0;
  border: 4px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: googleSpin 1.1s linear infinite;
}

.google-spinner span:nth-child(1) {
  color: #4285f4;
  animation-delay: 0s;
}

.google-spinner span:nth-child(2) {
  color: #ea4335;
  animation-delay: -0.275s;
}

.google-spinner span:nth-child(3) {
  color: #fbbc05;
  animation-delay: -0.55s;
}

.google-spinner span:nth-child(4) {
  color: #34a853;
  animation-delay: -0.825s;
}

.loader-text {
  font-size: 14px;
  color: #666666;
  letter-spacing: 0.3px;
}

@keyframes googleSpin {
  0% { transform: rotate(0deg); opacity: 1; }
  100% { transform: rotate(360deg); opacity: 1; }
}

@media (min-width: 768px) {
  .header-inner {
    padding: 0 20px;
  }

.page {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 16px 44px;
}


  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .product-name {
    font-size: 16px;
  }

  .site-footer {
    padding: 6px 20px;
  }

  .cart-bar {
    left: 20px;
    right: 20px;
    bottom: 20px;
    border-radius: 14px;
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
  }

  .section-head h1 {
    font-size: 32px;
  }
}


@media (min-width: 768px) {
  .page {
    padding: 24px 20px 44px;
  }

  .site-footer {
    padding: 6px 20px;
  }
}


.side-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 82%;
  max-width: 340px;
  height: 100%;
  background: rgba(0, 0, 0, 0.18);
  z-index: 9999;
  display: flex;
  justify-content: flex-end;
}

.side-menu.hidden {
  display: none !important;
}

.menu-panel {
  width: 100%;
  max-width: 340px;
  height: 100%;
  background: #ffffff;
  padding: 18px;
  overflow-y: auto;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.12);
}

.menu-card {
  background: #ffffff;
  border: 1px solid #e9e9e9;
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 14px;
}




.logout-btn {
  width: 100%;
  margin-top: 10px;
  height: 44px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #1f1f1f, #000000);
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
}

.social-menu-card {
  padding: 14px 14px 16px;
}

.social-menu-title {
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: #222222;
  margin-bottom: 12px;
}

.social-icons-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.social-icon-btn {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #f7f3fc;
  border: 1px solid #ece6f7;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  font-size: 17px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-icon-btn:hover,
.social-icon-btn:active {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.10);
}

.social-icon-btn.facebook {
  color: #1877f2;
}

.social-icon-btn.instagram {
  color: #e1306c;
}

.social-icon-btn.youtube {
  color: #ff0000;
}

.social-icon-btn.tiktok {
  color: #111111;
}

.store-info-card {
  padding: 14px 14px 12px;
}

.store-info-title {
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: #222222;
  margin-bottom: 8px;
}

.store-name {
  text-align: left;
  font-size: 18px;
  font-weight: 700;
  color: #5c2d91;
  margin-bottom: 10px;
}

.store-info-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 7px 0;
}

.store-action-btn {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #f7f3fc;
  color: #5c2d91;
  font-size: 15px;
  border: 1px solid #ece6f7;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.store-action-btn:hover,
.store-action-btn:active {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.10);
}

.store-info-text {
  font-size: 16px;
  color: #222222;
  line-height: 1.35;
  word-break: break-word;
}

.account-card {
  padding: 14px 14px 16px;
}

.account-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.account-title-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.account-title-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f3fc;
  color: #5c2d91;
  font-size: 14px;
}

.account-title-text {
  font-size: 18px;
  font-weight: 700;
  color: #222222;
}

.account-close-btn {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border: 1px solid #ece6f7;
  border-radius: 12px;
  background: #f7f3fc;
  color: #5c2d91;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
}

.account-subtext {
  text-align: left;
  font-size: 14px;
  color: #666666;
  line-height: 1.4;
  margin-bottom: 12px;
}

.menu-login-btn {
  width: 100%;
  height: 44px;
  border: none;
  border-radius: 14px;
  background: #5c2d91;
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(92, 45, 145, 0.18);
}

.account-user-name {
  text-align: left;
  font-size: 18px;
  font-weight: 700;
  color: #5c2d91;
  margin-bottom: 10px;
}

.account-info-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 7px 0;
}

.account-info-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f3fc;
  color: #5c2d91;
  font-size: 15px;
}

.account-info-text {
  font-size: 15px;
  color: #222222;
  line-height: 1.35;
  word-break: break-word;
}



* {
  -webkit-tap-highlight-color: transparent;
}

html,
body,
a,
button,
input,
textarea,
select,
img,
span,
div {
  -webkit-tap-highlight-color: transparent;
}

a:focus,
a:active,
button:focus,
button:active,
input:focus,
input:active,
textarea:focus,
textarea:active,
select:focus,
select:active,
img:focus,
img:active {
  outline: none;
  box-shadow: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
img:focus-visible {
  outline: none;
  box-shadow: none;
}

.brand-wrap,
.brand-wrap:focus,
.brand-wrap:active,
.brand-wrap:focus-visible,
.brand-logo,
.brand-logo:focus,
.brand-logo:active,
.brand-logo:focus-visible,
.brand-name,
.brand-name:focus,
.brand-name:active,
.brand-name:focus-visible,
.menu-btn,
.menu-btn:focus,
.menu-btn:active,
.menu-btn:focus-visible,
.search-btn,
.search-btn:focus,
.search-btn:active,
.search-btn:focus-visible,
.store-action-btn,
.store-action-btn:focus,
.store-action-btn:active,
.store-action-btn:focus-visible,
.social-icon-btn,
.social-icon-btn:focus,
.social-icon-btn:active,
.social-icon-btn:focus-visible,
.account-close-btn,
.account-close-btn:focus,
.account-close-btn:active,
.account-close-btn:focus-visible,
.menu-login-btn,
.menu-login-btn:focus,
.menu-login-btn:active,
.menu-login-btn:focus-visible,
.logout-btn,
.logout-btn:focus,
.logout-btn:active,
.logout-btn:focus-visible,
.add-to-cart-btn,
.add-to-cart-btn:focus,
.add-to-cart-btn:active,
.add-to-cart-btn:focus-visible,
.notify-me-btn,
.notify-me-btn:focus,
.notify-me-btn:active,
.notify-me-btn:focus-visible,
.qty-btn,
.qty-btn:focus,
.qty-btn:active,
.qty-btn:focus-visible,
.submit-review-btn,
.submit-review-btn:focus,
.submit-review-btn:active,
.submit-review-btn:focus-visible,
.place-order-btn,
.place-order-btn:focus,
.place-order-btn:active,
.place-order-btn:focus-visible,
.continue-btn,
.continue-btn:focus,
.continue-btn:active,
.continue-btn:focus-visible,
.review-tab-btn,
.review-tab-btn:focus,
.review-tab-btn:active,
.review-tab-btn:focus-visible,
.rating-star,
.rating-star:focus,
.rating-star:active,
.rating-star:focus-visible,
.notify-primary-btn,
.notify-primary-btn:focus,
.notify-primary-btn:active,
.notify-primary-btn:focus-visible {
  outline: none;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
}


.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.search-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  color: #111111;
  font-size: 18px;
}

.search-btn i {
  line-height: 1;
}




.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  z-index: 9998;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 58px 16px 16px;
}

.search-panel {
  width: 100%;
  max-width: 1400px;
  background: #ffffff;
  border: 1px solid #e9e9e9;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.search-overlay.hidden {
  display: none !important;
}

/* ===== HOME FINAL MENU TWEAKS ===== */
.side-menu {
  top: 60px;
  height: calc(100% - 60px);
  align-items: flex-start;
  background: transparent !important;
}

.menu-panel {
  height: 100%;
  padding: 12px;
  border-top-left-radius: 0;
  box-shadow: none !important;
  background: transparent !important;

}


.menu-card,
.account-card,
.store-info-card,
.social-menu-card {
  background: #ffffff;
  border: 1px solid #e9e9e9;
  border-radius: 14px;
  padding: 12px;
  margin-bottom: 10px;
  box-shadow: none;
}

.account-title-row {
  margin-bottom: 8px;
  justify-content: flex-start;
}

.account-title-left {
  gap: 8px;
}

.account-title-icon,
.account-info-icon,
.store-action-btn,
.social-icon-btn {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 10px;
  font-size: 12px;
  box-shadow: none;
}

.account-title-icon,
.account-info-icon,
.store-action-btn {
  background: #f7f3fc;
  color: #5c2d91;
  border: 1px solid #ece6f7;
}

.social-icon-btn {
  background: #f7f3fc;
  border: 1px solid #ece6f7;
}

.account-close-btn {
  display: none !important;
}

.account-user-name,
.store-name,
.account-info-text,
.store-info-text {
  font-size: 14px;
  line-height: 1.35;
}

.account-user-name,
.store-name {
  font-weight: 700;
  color: #222222;
  margin-bottom: 8px;
}

.account-info-row,
.store-info-row {
  gap: 10px;
  padding: 6px 0;
}

.logout-btn {
  width: 100%;
  margin-top: 8px;
  height: 40px;
  border-radius: 12px;
  font-size: 13px;
  box-shadow: none;
}

.social-icons-row {
  justify-content: space-between;
  gap: 8px;
}

.social-icon-btn i {
  font-size: 14px;
}

.global-action-loader {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(1px);
}

.store-name-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.store-name-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.store-name {
  margin-bottom: 0;
}


.account-name-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.account-name-row .account-title-icon {
  margin: 0;
  flex-shrink: 0;
}

.account-user-name {
  margin: 0;
}




.wa-help-widget {
  position: fixed;
  right: 16px;
  bottom: 18px;
  width: calc(100% - 32px);
  max-width: 330px;
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(16, 24, 40, 0.22);
  z-index: 9999;
  padding: 16px;
  border: 1px solid #e4e7ec;
}

.wa-close-btn {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: #f2f4f7;
  color: #344054;
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
}

.wa-header {
  display: flex;
  gap: 10px;
  align-items: center;
  padding-right: 34px;
}

.wa-avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #25d366;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.wa-title {
  font-size: 15px;
  font-weight: 900;
  color: #101828;
}

.wa-status {
  margin-top: 2px;
  font-size: 12px;
  font-weight: 700;
  color: #667085;
}

/* MESSAGE */
.wa-message {
  margin-top: 14px;
  background: #ecfdf3;
  color: #101828;
  padding: 11px 12px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.45;
}

/* INPUT */
.wa-input {
  width: 100%;
  margin-top: 12px;
  min-height: 82px;
  resize: none;
  border: 1px solid #d0d5dd;
  border-radius: 15px;
  padding: 12px;
  font-size: 14px;
  outline: none;
}

.wa-input:focus {
  border-color: #25d366;
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.12);
}

/* SEND */
.wa-send-btn {
  width: 100%;
  margin-top: 10px;
  border: 0;
  border-radius: 15px;
  padding: 13px;
  background: #25d366;
  color: #ffffff;
  font-weight: 900;
  cursor: pointer;
}

/* ===== FLOATING BUTTON (UPDATED) ===== */
.wa-floating-btn {
  position: fixed;
  right: 16px;
  bottom: 18px;
  z-index: 9999;

  width: 48px;   /* 🔥 reduced */
  height: 48px;  /* 🔥 reduced */

  border: 0;
  border-radius: 999px;
  background: #25d366;

  display: grid;
  place-items: center;

  box-shadow: 0 6px 16px rgba(0,0,0,0.25); /* cleaner */

  cursor: pointer;

  animation: waPulse 2.5s infinite; /* slower pulse */
}

/* ICON */
.wa-icon {
  width: 22px;  /* 🔥 reduced */
  height: 22px;
  filter: invert(1);
}

/* PULSE */
@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* HIDDEN */
.hidden {
  display: none !important;
}

/* TYPING */
.wa-typing {
  margin-top: 12px;
  background: #ecfdf3;
  padding: 10px 12px;
  border-radius: 14px;
  display: inline-flex;
  gap: 6px;
}

.wa-typing span {
  width: 6px;
  height: 6px;
  background: #101828;
  border-radius: 50%;
  animation: waTyping 1.2s infinite;
}

.wa-typing span:nth-child(2) { animation-delay: 0.2s; }
.wa-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes waTyping {
  0%, 80%, 100% { opacity: 0.3; transform: translateY(0); }
  40% { opacity: 1; transform: translateY(-4px); }
}

/* BADGE (FIXED POSITION) */
.wa-badge {
  position: absolute;
  top: -3px;
  right: -3px;

  background: #ef4444;
  color: white;

  font-size: 10px;
  font-weight: 900;

  padding: 2px 5px;
  border-radius: 999px;

  border: 2px solid #fff; /* 🔥 clean border */
}


.wa-avatar-img {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid #25d366; /* optional WhatsApp style ring */
}








.owner-mode-card {
  padding: 14px;
  border: 1px solid #ece6f7;
  background: #ffffff;
}

.owner-mode-badge {
  width: 100%;
  margin-bottom: 12px;
  padding: 10px 12px;
  border-radius: 999px;
  background: #f7f3fc;
  color: #5c2d91;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.owner-action-btn,
.owner-logout-btn {
  width: 100%;
  height: 44px;
  border: 0;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  margin-top: 8px;
}

.owner-action-btn {
  background: #5c2d91;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.owner-logout-btn {
  background: #101828;
  color: #ffffff;
}


.pending-payment-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.55);
  display: grid;
  place-items: center;
  padding: 18px;
}

.pending-payment-box {
  position: relative;
  width: 100%;
  max-width: 360px;
  background: #ffffff;
  border-radius: 22px;
  padding: 22px;
  text-align: center;
}

.pending-payment-close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: #f2f4f7;
  color: #111827;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.pending-payment-icon {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: #fff7ed;
  color: #f97316;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  font-size: 24px;
  font-weight: 900;
}

.pending-payment-box h2 {
  font-size: 20px;
  margin-bottom: 8px;
}

.pending-payment-box p {
  font-size: 14px;
  color: #667085;
  line-height: 1.5;
  margin-bottom: 16px;
}

.pending-pay-btn,
.pending-cancel-btn,
.pending-submit-btn {
  width: 100%;
  border: 0;
  border-radius: 15px;
  padding: 13px;
  font-weight: 900;
  cursor: pointer;
  margin-top: 9px;
}

.pending-pay-btn,
.pending-submit-btn {
  background: #16a34a;
  color: #ffffff;
}

.pending-cancel-btn {
  background: #fee2e2;
  color: #991b1b;
}

#pending-payment-upload {
  text-align: left;
  margin-top: 12px;
}

#pending-payment-upload label {
  display: block;
  margin: 12px 0 6px;
  font-size: 13px;
  font-weight: 900;
}

#pending-payment-upload input {
  width: 100%;
  border: 1px solid #d0d5dd;
  border-radius: 12px;
  padding: 12px;
}

.pending-payment-message {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 900;
}

.pending-payment-message.error {
  color: #dc2626;
}

.pending-payment-message.success {
  color: #16a34a;
}


.my-orders-card {
  padding: 12px;
}

.my-orders-btn {
  width: 100%;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: #5c2d91;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
}

.my-orders-overlay {
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: rgba(0,0,0,0.55);
  display: grid;
  place-items: center;
  padding: 18px;
}

.my-orders-box {
  position: relative;
  width: 100%;
  max-width: 390px;
  max-height: 82vh;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 22px;
  padding: 20px;
}

.my-orders-close-btn {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: #f2f4f7;
  color: #111;
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
}

.my-orders-box h2 {
  font-size: 20px;
  margin-bottom: 14px;
}

.my-order-row {
  border: 1px solid #e9e9e9;
  border-radius: 14px;
  padding: 12px;
  margin-bottom: 10px;
  cursor: pointer;
  background: #ffffff;
}

.my-order-row.active-order {
  border-color: #f97316;
  background: #fff7ed;
}

.my-order-number {
  font-size: 14px;
  font-weight: 900;
  color: #111;
}

.my-order-meta {
  margin-top: 5px;
  font-size: 12px;
  color: #667085;
  line-height: 1.45;
}

.my-order-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.my-order-badge {
  padding: 5px 8px;
  border-radius: 999px;
  background: #f2f4f7;
  font-size: 11px;
  font-weight: 900;
  color: #344054;
}

.order-detail-section {
  border-top: 1px solid #eee;
  padding-top: 10px;
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.55;
}

.order-detail-item {
  margin-top: 8px;
  padding: 9px;
  border-radius: 12px;
  background: #f8fafc;
  font-size: 13px;
}


.pending-payment-qr-box {
  margin-top: 14px;
  padding: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #f8fafc;
  text-align: center;
}

.pending-payment-qr-title {
  font-size: 13px;
  font-weight: 900;
  color: #111827;
  margin-bottom: 10px;
}

.pending-payment-qr-img {
  width: 100%;
  max-width: 160px;
  border-radius: 14px;
  display: block;
  margin: 0 auto;
}

.rejected-payment-icon {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: #fee2e2;
  color: #dc2626;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  font-size: 24px;
  font-weight: 900;
}

.whatsapp-contact-btn {
  width: 100%;
  border: 0;
  border-radius: 15px;
  padding: 13px;
  font-weight: 900;
  cursor: pointer;
  margin-top: 9px;
  background: #25d366;
  color: #ffffff;
}

/* ===== PREMIUM BEOEB-STYLE MENU FOR LEAYRAA ===== */

.side-menu {
  position: fixed;
  top: 48px;
  right: 14px;
  left: auto;
  z-index: 9999;
  width: 340px;
  max-width: calc(100vw - 28px);
  height: auto;
  background: transparent !important;
  display: block;
}

.side-menu::before {
  content: "";
  position: fixed;
  top: 48px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(245, 247, 251, 0.72);
  backdrop-filter: blur(8px);
  z-index: -1;
}

.side-menu.hidden {
  display: none !important;
}

.menu-panel {
  width: 100%;
  max-width: 340px;
  height: auto;
  max-height: calc(100vh - 64px);
  overflow-y: auto;
  padding: 8px 0 0;
  background: transparent !important;
  box-shadow: none !important;
}

.menu-card,
.account-card,
.store-info-card,
.social-menu-card,
.my-orders-card,
.owner-mode-card {
  background: rgba(255, 255, 255, 0.97);
  border-left: 1px solid #e7eaf0;
  border-right: 1px solid #e7eaf0;
  border-top: 0;
  border-bottom: 0;
  border-radius: 0;
  padding: 12px 14px;
  margin: 0;
  box-shadow: 0 18px 42px rgba(16, 24, 40, 0.10);
}

.menu-card:first-child {
  border-top: 1px solid #e7eaf0;
  border-radius: 22px 22px 0 0;
}

.menu-card:last-child {
  border-bottom: 1px solid #e7eaf0;
  border-radius: 0 0 22px 22px;
}

.menu-card h3 {
  margin: 0 0 9px;
  font-size: 14px;
  font-weight: 900;
  color: #101828;
  text-align: center;
}

.menu-account-info {
  display: grid;
  gap: 3px;
  margin-bottom: 9px;
  text-align: center;
}

.menu-account-info span {
  font-size: 13px;
  font-weight: 900;
  color: #101828;
}

.menu-account-info small {
  font-size: 11px;
  color: #667085;
  font-weight: 700;
}

.menu-login-btn,
.logout-btn,
.menu-action-btn {
  width: 100%;
  border: 0;
  border-radius: 15px;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  background: #101828;
  color: #ffffff;
  box-shadow: none;
}

.logout-btn {
  margin-top: 6px;
}

.my-orders-btn {
  margin: 0;
}

.store-info-row {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 2px;
}

.store-action-btn {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 12px;
  background: #f3f4f6;
  border: 0;
  display: grid;
  place-items: center;
  font-size: 15px;
  box-shadow: none;
}

.store-info-text {
  font-size: 13px;
  font-weight: 700;
  color: #344054;
}

.store-action-btn .fa-phone-alt {
  color: #16a34a;
}

.store-action-btn .fa-envelope {
  color: #ea4335;
}

.store-action-btn .fa-map-marker-alt {
  color: #5c2d91;
}

.social-menu-card {
  display: grid;
  grid-template-columns: repeat(4, 32px);
  justify-content: space-between;
  gap: 0;
  padding: 12px 16px 14px;
}

.social-menu-card::before {
  content: "Follow Us";
  grid-column: 1 / -1;
  text-align: center;
  font-size: 14px;
  font-weight: 900;
  color: #101828;
  margin-bottom: 8px;
}

.social-menu-title {
  display: none;
}

.social-icons-row {
  display: contents;
}

.social-icon-btn {
  width: 32px;
  height: 32px;
  min-width: 32px;
  margin: 0 auto;
  text-decoration: none;
  background: #f3f4f6;
  border: 0;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 15px;
  box-shadow: none;
}

.social-icon-btn.facebook {
  color: #1877f2;
}

.social-icon-btn.instagram {
  color: #e4405f;
}

.social-icon-btn.youtube {
  color: #ff0000;
}

.social-icon-btn.tiktok {
  color: #000000;
}


.store-name-row {
  display: flex;
  align-items: center;
}

.store-name-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.store-name-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid #ececec;
}

.store-name-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.store-name {
  font-size: 16px;
  font-weight: 900;
  color: #101828;
}


/* =========================
   BUTTON LOADING / DISABLED
========================= */

button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}

/* Prevent accidental double tap zoom */
button,
a,
input,
textarea,
select {
  touch-action: manipulation;
}

/* Better click feel */
.menu-login-btn,
.logout-btn,
.owner-action-btn,
.owner-logout-btn,
.my-orders-btn,
.pending-pay-btn,
.pending-submit-btn,
.pending-cancel-btn,
.whatsapp-contact-btn,
.wa-send-btn {
  transition:
    opacity 0.18s ease,
    transform 0.12s ease,
    background 0.18s ease;
}

/* Press effect */
.menu-login-btn:active,
.logout-btn:active,
.owner-action-btn:active,
.owner-logout-btn:active,
.my-orders-btn:active,
.pending-pay-btn:active,
.pending-submit-btn:active,
.pending-cancel-btn:active,
.whatsapp-contact-btn:active,
.wa-send-btn:active {
  transform: scale(0.98);
}



.side-menu {
  z-index: 12000 !important;
}

.wa-help-widget,
.wa-floating-btn {
  z-index: 8000 !important;
}

.pending-payment-overlay,
.my-orders-overlay {
  z-index: 20000 !important;
}

#home-alert-overlay,
#pending-cancel-confirm-overlay,
#rejected-payment-overlay {
  z-index: 30000 !important;
}


