/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE.CSS  — Full mobile/tablet support for the storefront
   Multi-tenant safe: only uses class/element selectors, no IDs tied
   to a specific brand.
   Breakpoints:
     xl  > 1200px  (already fine)
     lg  ≤ 1200px
     md  ≤ 992px
     sm  ≤ 768px
     xs  ≤ 480px
     xxs ≤ 360px
═══════════════════════════════════════════════════════════════════ */

/* ── 0. Base resets that improve mobile experience ──────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

img, video, svg { max-width: 100%; height: auto; display: block; }

/* ── 1. HEADER ──────────────────────────────────────────────────── */
header {
  padding: 12px 20px;
  position: sticky;
  top: 0;
  z-index: 500;
  flex-wrap: wrap;
  gap: 8px;
}

/* Logo area */
header > div:first-child a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
}

header > div:first-child h2 {
  font-size: clamp(14px, 3.5vw, 22px);
  white-space: nowrap;
  color: white;
}


/* ══════════════════════════════════════════════════════════════
   MOBILE DRAWER  (replaces the old .site-nav drawer rules)
   The drawer is a fixed panel injected beside the layout.
   JS clones nav items from #desktopNav into #mobileDrawerBody.
══════════════════════════════════════════════════════════════ */

/* Desktop nav hidden on mobile */
@media (max-width: 768px) {
  .desktop-nav { display: none !important; }
  .mobile-menu-toggle { display: flex !important; }
}

/* Always hide toggle on desktop */
@media (min-width: 769px) {
  .mobile-menu-toggle { display: none !important; }
  .mobile-drawer      { display: none !important; }
  .mobile-nav-overlay { display: none !important; }
}

/* ── Drawer shell ────────────────────────────────────────────── */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: -100%;
  width: min(300px, 82vw);
  height: 100vh;
  background: #1a0a00;
  z-index: 800;
  overflow-y: auto;
  transition: left 0.28s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  box-shadow: 4px 0 32px rgba(0,0,0,0.45);
}

.mobile-drawer.open {
  left: 0;
}

/* ── Header row ─────────────────────────────────────────────── */
.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(212,168,85,0.2);
  flex-shrink: 0;
}

.mobile-drawer-title {
  color: #d4a855;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.mobile-drawer-close {
  background: none;
  border: none;
  color: #d4a855;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
}

/* ── Drawer body (nav items injected by JS) ─────────────────── */
.mobile-drawer-body {
  flex: 1;
  padding: 8px 0 32px;
  overflow-y: auto;
}

/* ── Nav items inside drawer ────────────────────────────────── */
.mobile-drawer-body .nav-item {
  border-bottom: 1px solid rgba(212,168,85,0.1);
  list-style: none;
}

.mobile-drawer-body .nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  color: #f5e6c8;
  font-size: 15px;
  text-decoration: none;
  letter-spacing: 0.3px;
  cursor: pointer;
}

.mobile-drawer-body .nav-link:hover,
.mobile-drawer-body .nav-link:active {
  color: #d4a855;
  background: rgba(212,168,85,0.07);
}

/* Chevron icon */
.mobile-drawer-body .nav-chevron {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4a855' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.mobile-drawer-body .nav-item.mob-expanded > .nav-link .nav-chevron {
  transform: rotate(180deg);
}

/* ── Sub-panel (mega menu simplified) ──────────────────────── */
.mobile-sub-panel {
  display: none;
  background: rgba(0,0,0,0.25);
  padding: 4px 0 8px 16px;
  border-left: 2px solid rgba(212,168,85,0.2);
  margin: 0 12px 0 18px;
}

.mobile-sub-panel.open {
  display: block;
}

.mobile-sub-panel .mega-col-title {
  font-size: 9px;
  letter-spacing: 2px;
  color: #d4a855;
  text-transform: uppercase;
  padding: 10px 8px 4px;
  display: block;
}

.mobile-sub-panel a {
  display: block;
  padding: 7px 8px;
  color: #c9b08a;
  font-size: 13px;
  text-decoration: none;
}

.mobile-sub-panel a:hover { color: #d4a855; }

/* ── Overlay ─────────────────────────────────────────────────── */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 799;
  backdrop-filter: blur(2px);
}

.mobile-nav-overlay.active { display: block; }
/* ── 5. HEADER layout adjustments ──────────────────────────────── */
@media (max-width: 768px) {
  header {
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* Logo stays left, icons right, hamburger far right */
  header > div:first-child { flex: 1; }

  .nav-icons { gap: 14px; order: 2; }

  header img { max-width: 44px; }
  header h2 { font-size: 16px; }
}

/* ── 6. HERO SLIDER ─────────────────────────────────────────────── */
.hero-img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .hero-img { max-height: 420px; }

  .hero-content {
    padding: 20px 16px 24px;
    max-width: 100%;
  }

  .hero-title { font-size: clamp(18px, 5vw, 32px); }
  .hero-sub   { font-size: 13px; margin-bottom: 14px; }
  .hero-cta   { padding: 10px 22px; font-size: 13px; }

  .hero-prev, .hero-next {
    width: 32px; height: 32px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .hero-img { max-height: 300px; }
  .hero-content { padding: 14px 14px 20px; }
  .hero-title { font-size: clamp(15px, 5vw, 24px); }
  .hero-sub   { display: none; } /* too cramped on tiny screens */
}

/* Old hero (non-slider) */
@media (max-width: 768px) {
  .hero, .nc-hero {
    flex-direction: column !important;
    grid-template-columns: 1fr !important;
    padding: 24px 16px !important;
    text-align: center;
    min-height: auto;
  }

  .hero-text h1, .nc-hero-title {
    font-size: clamp(24px, 7vw, 40px) !important;
  }

  .nc-hero-content { padding: 32px 20px !important; }
  .nc-hero-btns { justify-content: center; }
  .nc-hero-visual { padding: 20px 0; }
  .nc-hero-img-placeholder { width: 220px; height: 300px; }
}

/* ── 7. TRUST BAR ───────────────────────────────────────────────── */
.trust-inner {
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.trust-inner::-webkit-scrollbar { display: none; }

@media (max-width: 480px) {
  .trust-item { padding: 8px 12px; }
  .trust-label { font-size: 11px; }
}

/* ── 8. FEATURES BAR ────────────────────────────────────────────── */
@media (max-width: 992px) {
  .features-inner { grid-template-columns: repeat(2, 1fr); }
  .features        { flex-wrap: wrap; gap: 8px; padding: 20px; }
  .feature-box     { flex: 1 1 40%; }
}

@media (max-width: 480px) {
  .features-inner { grid-template-columns: 1fr 1fr; }
  .feature-item   { padding: 12px 10px; gap: 6px; }
  .feature-text strong { font-size: 11px; }
  .feature-text span   { font-size: 10px; }
}

/* ── 9. SECTION WRAPPER & TITLES ────────────────────────────────── */
@media (max-width: 768px) {
  .section-wrapper  { padding: 20px 14px; }
  .section-title    { font-size: 18px; }
  .nc-container     { padding: 0 16px; }
  .nc-section       { padding: 40px 0; }
}

/* ── 10. CATEGORY GRID (home) ───────────────────────────────────── */
@media (max-width: 768px) {
  .category-grid-home { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .nc-cat-grid        { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .nc-cat-card        { height: 160px; }
}

@media (max-width: 480px) {
  .category-grid-home { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .cat-label          { font-size: 11px; }
}

/* ── 11. PRICE RANGE GRID ───────────────────────────────────────── */
@media (max-width: 992px) {
  .price-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .price-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
}

/* ── 12. PRODUCT CARD (horizontal scroll – home) ────────────────── */
@media (max-width: 480px) {
  .product-card-home { width: 140px; }
  .pch-name          { font-size: 11px; }
  .pch-price         { font-size: 13px; }
}

/* ── 13. PRODUCT GRID (category/search page) ────────────────────── */
.nc-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1200px) {
  .nc-product-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nc-product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .nc-product-img-wrap { height: 200px; }
  .nc-product-info { padding: 10px; }
  .nc-product-name { font-size: 13px; }
  .nc-price        { font-size: 14px; }
}

@media (max-width: 480px) {
  .nc-product-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .nc-product-img-wrap { height: 170px; }
  .nc-btn-add-cart { font-size: 10px; padding: 7px; }
}

/* ── 14. OLD PRODUCT GRID (site.css .product-grid) ─────────────── */
@media (max-width: 1200px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .products     { padding: 24px 14px; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .card img     { height: 180px; }
}

/* ── 15. CATEGORY PAGE LAYOUT (sidebar + products) ──────────────── */
@media (max-width: 992px) {
  .nc-category-layout {
    flex-direction: column;
    gap: 16px;
  }

  .nc-filter-sidebar {
    width: 100%;
    min-width: 0;
  }

  /* Collapse filter into an accordion/toggle on mobile */
  .nc-filter-sidebar-inner {
    display: none;
  }
  .nc-filter-sidebar-inner.filter-open {
    display: block;
  }

  .nc-filter-toggle-btn {
    display: flex !important;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 10px 16px;
    background: var(--nc-cream, #faf7f2);
    border: 1px solid var(--nc-border, rgba(180,140,100,0.2));
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 8px;
  }
}

.nc-filter-toggle-btn { display: none; } /* hidden on desktop */

/* ── 16. TOOLBAR ────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nc-toolbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .nc-sort-wrap { margin-left: 0; width: 100%; }
  .nc-sort-wrap select { width: 100%; }
}

/* ── 17. PRODUCT DETAIL PAGE ────────────────────────────────────── */
@media (max-width: 768px) {
  .nc-product-detail {
    grid-template-columns: 1fr !important;
    gap: 20px;
    padding: 16px 0 32px;
  }

  .nc-detail-title  { font-size: clamp(20px, 6vw, 30px); }
  .nc-price-lg      { font-size: 22px; }
  .nc-thumb-row     { gap: 6px; }
  .nc-thumb         { width: 56px; height: 56px; }
}

/* ── 18. CART PAGE ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nc-cart-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .nc-cart-summary {
    position: static !important;
  }

  .nc-cart-item {
    grid-template-columns: 72px 1fr auto;
    grid-template-rows: auto auto;
    gap: 8px 12px;
  }

  .nc-cart-item img { width: 72px; height: 72px; }

  .nc-cart-item-subtotal { grid-column: 3; grid-row: 1; text-align: right; }

  .nc-qty-ctrl  { grid-column: 2; }
  .nc-remove-btn { grid-column: 3; grid-row: 2; }
}

@media (max-width: 480px) {
  .nc-cart-item {
    grid-template-columns: 60px 1fr;
    gap: 8px;
  }

  .nc-cart-item img        { width: 60px; height: 60px; }
  .nc-cart-item-subtotal   { grid-column: 2; }
  .nc-qty-ctrl             { grid-column: 2; }
  .nc-remove-btn           { grid-column: 2; justify-self: end; }
}

/* ── 19. CHECKOUT PAGE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .nc-checkout-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .nc-form-row { grid-template-columns: 1fr; }
  .nc-payment-box { margin: 1.5rem 16px; padding: 28px 20px; }
}

/* ── 20. AUTH PAGES (login / register) ──────────────────────────── */
@media (max-width: 480px) {
  .nc-auth-box {
    padding: 32px 20px;
    margin: 0 12px;
  }
}

/* ── 21. FOOTER ─────────────────────────────────────────────────── */
@media (max-width: 992px) {
  .footer-container,
  .nc-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .footer-container,
  .nc-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 0 16px;
  }

  footer { padding: 32px 16px 24px; }
  .nc-footer { padding: 40px 0 0; }
  .nc-footer-bottom { padding: 16px 16px; }
}

@media (max-width: 380px) {
  .footer-container,
  .nc-footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ── 22. WHY SHOP / NEWSLETTER ──────────────────────────────────── */
@media (max-width: 768px) {
  .why-container {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .why-item { width: 100%; max-width: 380px; }

  .why-shop, .newsletter { padding: 32px 16px; }

  .newsletter-box {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .newsletter-box input  { width: 100% !important; }
  .newsletter-box button { width: 100%; }
}

/* ── 23. PROMO BANNER ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .promo-banner { max-height: 300px; }
  .promo-overlay { padding: 20px 16px; }
  .promo-title   { font-size: clamp(16px, 4vw, 28px); }
  .promo-sub     { font-size: 13px; }
}

/* ── 24. WHATSAPP BAR ───────────────────────────────────────────── */
@media (max-width: 480px) {
  .whatsapp-bar { padding: 10px 12px; gap: 8px; flex-wrap: wrap; }
  .wa-text strong { font-size: 13px; }
  .wa-btn { padding: 6px 14px; font-size: 12px; }
}

/* ── 25. PAGE HEADER (category/detail) ─────────────────────────── */
@media (max-width: 768px) {
  .nc-page-header { padding: 24px 0; }
  .nc-page-title  { font-size: clamp(20px, 5vw, 28px); margin: 12px 0 8px; }
  .nc-page-title-row { flex-wrap: wrap; gap: 8px; }
}

/* ── 26. ANNOUNCEMENTS ──────────────────────────────────────────── */
@media (max-width: 480px) {
  .announce-slide { font-size: 11px; padding: 6px 10px; }
}

/* ── 27. UTILITY: touch targets ─────────────────────────────────── */
@media (max-width: 768px) {
  .nc-btn-gold,
  .nc-btn-outline,
  .nc-btn-add-cart,
  .shop-btn,
  .btn {
    min-height: 44px; /* WCAG recommended touch target */
  }

  .icon-wrap,
  .user-icon,
  .nc-cart-btn {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* ── 28. FIX HERO SLIDER full width overflow ────────────────────── */
.hero-slider,
.slide {
  max-width: 100%;
}

.slide {
  min-width: 100% !important;
  width: 100% !important;
  height: auto !important;      /* old code used 100vh — kills mobile */
}

/* ── 29. MAKE OLD nc-hero GRID responsive ────────────────────────── */
.nc-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 768px) {
  .nc-hero { grid-template-columns: 1fr !important; }
}

/* ── 30. ORDERS PAGE ────────────────────────────────────────────── */
@media (max-width: 600px) {
  .nc-order-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .nc-order-item-row { flex-direction: column; gap: 4px; }
}

/* ── 31. SCROLL PADDING for sticky header ───────────────────────── */
html {
  scroll-padding-top: 70px;
}

/* ── 32. PAGINATION ─────────────────────────────────────────────── */
@media (max-width: 480px) {
  .nc-pagination { flex-wrap: wrap; justify-content: center; gap: 4px; }
  .nc-page-btn   { padding: 6px 10px; font-size: 12px; }
}

/* ── 33. FILTER SIDEBAR MOBILE (Category page) ──────────────────── */
@media (max-width: 992px) {
  /* Hide sidebar by default on mobile */
  #filterSidebar {
    display: none;
    width: 100% !important;
    min-width: 0 !important;
    background: var(--nc-cream, #faf7f2);
    border: 1px solid var(--nc-border, rgba(180,140,100,0.2));
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 12px;
  }

  /* Show when toggled open */
  #filterSidebar.nc-sidebar-open {
    display: block;
  }

  /* Make filter toggle button always visible on mobile */
  .nc-filter-toggle-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    background: var(--nc-cream, #faf7f2);
    border: 1px solid var(--nc-border, rgba(180,140,100,0.2));
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
    font-weight: 500;
    color: var(--nc-dark2, #2d1200);
  }

  .nc-filter-toggle-btn:hover {
    background: #f0e8dc;
  }
}

@media (min-width: 993px) {
  /* On desktop, always show sidebar, hide toggle */
  #filterSidebar { display: block !important; }
  .nc-filter-toggle-btn { display: none !important; }
}

/* ── 34. COLLECTION CARDS horizontal scroll ─────────────────────── */
.hscroll-track {
  -webkit-overflow-scrolling: touch;
}

/* Show scroll hint on mobile */
@media (max-width: 768px) {
  .hscroll-track::after {
    content: '';
    flex-shrink: 0;
    width: 1px;
  }
}

/* ── 35. FIX: old 100vh slide heights on mobile ─────────────────── */
@media (max-width: 768px) {
  .slide,
  .hero-slide {
    height: auto !important;
    min-height: 0 !important;
  }
}

/* ── 36. ANNOUNCEMENT BAR auto-rotate: no layout shift ─────────── */
.announcement-wrap {
  min-height: 34px;
}

/* ── 37. PRODUCT DETAIL: image thumbnails scroll on mobile ──────── */
@media (max-width: 768px) {
  .nc-thumb-row {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .nc-thumb-row::-webkit-scrollbar { display: none; }
  .nc-thumb { flex-shrink: 0; }
}

/* ── 38. EMPTY STATE full width on mobile ───────────────────────── */
@media (max-width: 768px) {
  .nc-empty-state { padding: 48px 16px; }
}

/* ── 39. SUCCESS / PAYMENT pages ────────────────────────────────── */
@media (max-width: 480px) {
  .nc-success-box {
    margin: 2rem 12px;
    padding: 32px 16px;
  }
  .nc-success-btns {
    flex-direction: column;
    align-items: stretch;
  }
  .nc-success-btns a,
  .nc-success-btns button {
    text-align: center;
  }
}

/* ── 40. TOAST: bottom-center on mobile ─────────────────────────── */
@media (max-width: 600px) {
  .nc-toast {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    text-align: center;
    bottom: 16px;
  }
}

/* ── 41. USER DROPDOWN position fix on mobile ───────────────────── */
@media (max-width: 480px) {
  .user-dropdown {
    right: -10px;
    min-width: 160px;
  }
}

/* ── 42. SALE BANNER responsive ─────────────────────────────────── */
@media (max-width: 768px) {
  .nc-sale-banner { padding: 40px 16px; }
  .nc-sale-content h2 { font-size: clamp(22px, 6vw, 36px); }
  .nc-sale-sub { font-size: 16px; }
}

/* ── 43. QUANTITY CONTROL bigger on touch ───────────────────────── */
@media (max-width: 768px) {
  .nc-qty-ctrl button { padding: 8px 14px; font-size: 18px; }
  .nc-qty-ctrl span,
  .nc-qty-ctrl input  { width: 40px; font-size: 15px; }
}

/* ── 44. FONT SIZE safety: prevent zoom on input focus (iOS) ────── */
@media (max-width: 768px) {
  input[type="text"],
  input[type="email"],
  input[type="password"],
  input[type="number"],
  input[type="tel"],
  textarea,
  select {
    font-size: 16px !important; /* prevents iOS auto-zoom */
  }
}


/* Social icons — horizontal */
.footer-social-icons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: var(--brand-primary, #d4a855);
    transition: background 0.2s, transform 0.2s;
    text-decoration: none;
}

    .social-icon:hover {
        background: var(--brand-primary, #d4a855);
        color: #fff;
        transform: translateY(-2px);
    }

/* Payment icons — horizontal */
.payment-icons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.payment-icon {
    display: inline-flex;
    align-items: center;
    opacity: 0.85;
    transition: opacity 0.2s;
}

    .payment-icon:hover {
        opacity: 1;
    }

/* Bottom bar */
/* Bottom bar */
.footer-bottom-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

/* Copyright block — always center */
.footer-copyright-block {
    flex: 1;
    text-align: center;
}

.footer-copyright {
    margin: 0;
    font-size: 13px;
    opacity: 0.7;
}

.footer-developed-by {
    margin: 4px 0 0;
    font-size: 11px;
    opacity: 0.5;
}

    .footer-developed-by a {
        color: inherit;
        text-decoration: none;
        opacity: 0.8;
    }

        .footer-developed-by a:hover {
            opacity: 1;
            text-decoration: underline;
        }

.footer-bottom-spacer {
    flex: 0 0 auto;
    width: 200px; /* same approximate width as payment icons — keeps copyright centered */
}

/* Mobile */
@@media (max-width: 640px) {
    .footer-bottom-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-bottom-spacer {
        display: none;
    }

    .payment-icons,
    .footer-social-icons {
        justify-content: center;
    }
}




.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    animation: pulse 1.5s infinite;
}

    .whatsapp-float i {
        color: white;
    }


@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* WhatsApp */
.whatsapp-float {
    bottom: 20px;
    right: 20px;
}

.whatsapp-float {
    text-decoration: none !important;
}

    .whatsapp-float:hover {
        text-decoration: none !important;
    }

footer a:hover {
    color: #0dcaf0 !important;
    text-decoration: underline;
}