/* common css starts */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
ul,li{
    list-style: none;
}
a{
    text-decoration: none;
}
.container{
max-width:1280px;
}
body{
    font-family: 'Nunito', sans-serif; 
}
:root {
      --green: #00a651;
      --green-dark: #007a3d;
     --green-light: #e8f7ef;
       --green-mid: #2e9e6e;
       --gold: #c8922a;
       --text-dark: #1c1c1c;
      --text-mid: #555;
      --text-light: #888;
      --border: #e4e4e4;
      --topbar-bg: #f7f9f7;
       --text-muted: #7a7872;
       --border: #e8e4de;
      --danger-soft: #fdf0ef;
      --danger: #c0392b;
      --gold-light: #fdf3e3;
      --bg-main: #f5f3ef;
      --bg-card: #ffffff;
    }

/* Preloader - Cool, Modern & Sexy Design */
#preloader {
  position: fixed;
  inset: 0;                    /* top:0; left:0; width:100%; height:100vh; */
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

#preloader .loader {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

/* Logo with premium glow */
#preloader .loader img {
  width: 100px;
  
  filter: drop-shadow(0 0 35px rgba(0, 166, 81, 0.7));
  animation: logoPulse 2.8s ease-in-out infinite;
  transition: all 0.4s ease;
}

#preloader .loader img:hover {
  transform: scale(1.1) rotate(8deg);
  filter: drop-shadow(0 0 50px rgba(0, 166, 81, 0.9));
}

/* Loading Text */
#preloader .loader p {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--green);
  margin: 0;
  position: relative;
}

#preloader .loader p::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: -10%;
  width: 120%;
  height: 2.5px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--green) 30%, 
    var(--green) 70%, 
    transparent 100%);
  animation: loadingLine 1.6s linear infinite;
}

/* Dual Spinner Rings */
.loader::before,
.loader::after {
  content: '';
  position: absolute;
  border-radius: 50%;
}

.loader::before {
  top: -88px;
  width: 185px;
  height: 185px;
  border: 7px solid rgba(0, 166, 81, 0.12);
  border-top-color: var(--green);
  animation: spin 1.1s linear infinite;
  box-shadow: 0 0 40px rgba(0, 166, 81, 0.5);
}

.loader::after {
  top: -100px;
  width: 210px;
  height: 210px;
  border: 4px solid transparent;
  border-top-color: rgba(0, 166, 81, 0.6);
  animation: spin 2.4s linear infinite reverse;
}

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

@keyframes logoPulse {
  0%, 100% { 
    transform: scale(1); 
    filter: drop-shadow(0 0 30px rgba(0, 166, 81, 0.6));
  }
  50% { 
    transform: scale(1.08); 
    filter: drop-shadow(0 0 55px rgba(0, 166, 81, 0.85));
  }
}

@keyframes loadingLine {
  0%   { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

/* Fade out animation */
#preloader.fade-out {
  opacity: 0;
  pointer-events: none;
}
/* common css ends */

/* ── TOP BAR ─────────────────────────────────── */
    .topbar {
      background: var(--topbar-bg);
      border-bottom: 1px solid var(--border);
      font-size: 13px;
      color: var(--text-mid);
      padding: 6px 0;
    }
    .topbar a { color: var(--text-mid); text-decoration: none; }
    .topbar a:hover { color: var(--green); }
    .topbar .sep { margin: 0 10px; color: var(--border); }
 
    /* ── MIDDLE BAR ───────────────────────────────── */
    .middlebar {
      padding: 14px 0;
      border-bottom: 1px solid var(--border);
      background: #fff;
    }
 
    /* Logo placeholder */
    .logo-slot {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 22px;
      font-weight: 800;
      color: var(--text-dark);
      text-decoration: none;
      min-width: 160px;
    }
    .logo-slot .logo-icon {
      width: 42px;
      height: 42px;
      border: 2px dashed var(--green);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      color: var(--green);
      text-align: center;
      line-height: 1.2;
    }
 
    /* Search — hidden on mobile, visible lg+ */
    .search-wrap {
      display: none;
    }
    @media (min-width: 992px) {
      .search-wrap { display: flex; }
    }
    .search-wrap input {
      border: 2px solid var(--border);
      border-right: none;
      border-radius: 8px 0 0 8px;
      padding: 9px 16px;
      font-size: 14px;
      outline: none;
      width: 100%;
      transition: border-color .2s;
    }
    .search-wrap input:focus { border-color: var(--green); }
    .search-wrap button {
      background: var(--green);
      color: #fff;
      border: none;
      padding: 9px 22px;
      border-radius: 0 8px 8px 0;
      font-weight: 700;
      font-size: 14px;
      cursor: pointer;
      transition: background .2s;
    }
    .search-wrap button:hover { background: var(--green-dark); }
 
    /* Icons */
    .icon-btn {
      background: none !important;
      border: none !important;
      cursor: pointer!important;
      position: relative!important;
      color: var(--text-dark)!important;
      font-size: 22px!important;
      padding: 4px 8px!important;
      transition: color .2s!important;
    }
    .icon-btn:hover { color: var(--green); }
    .badge-dot {
      position: absolute;
      top: 0; right: 0;
      background: var(--green);
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      width: 18px; height: 18px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
    }
    .cart-label { font-size: 12px; color: var(--text-light); line-height: 1; }
    .cart-price { font-size: 14px; font-weight: 800; color: var(--text-dark); }
 
    /* ── NAVBAR ───────────────────────────────────── */
     .main-navbar {
      background: var(--green);
      padding: 0;
      box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
      
    }
    
 
    /* Nav links */
    .main-navbar .nav-link {
      color: rgba(255,255,255,.92) !important;
      font-size: 14px;
      font-weight: 600;
      padding: 14px 16px !important;
      display: flex;
      align-items: center;
      gap: 4px;
      transition: background .2s, color .2s;
      position: relative;
    }
    .main-navbar .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0; left: 50%; right: 50%;
      height: 3px;
      background: #fff;
      border-radius: 2px 2px 0 0;
      transition: left .25s ease, right .25s ease;
    }
    .main-navbar .nav-link:hover::after,
    .main-navbar .nav-link.active::after {
      left: 12px; right: 12px;
    }
    .main-navbar .nav-link:hover,
    .main-navbar .nav-link.active {
      color: #fff !important;
      background: rgba(0,0,0,.1);
    }
 
    /* ═══════════════════════════════════════════════
   NAVBAR ACTIVE STATES CSS
   তোমার existing design এর সাথে perfect match
   ═══════════════════════════════════════════════ */

/* ── DESKTOP NAV — Active link (hover এর মতোই দেখাবে) ── */
.main-navbar .nav-link.active {
  color: #fff !important;
  background: rgba(0, 0, 0, 0.15);
}

/* নিচে সাদা underline bar — hover এ যেটা আসে, active তে সেটা সবসময় থাকবে */
.main-navbar .nav-link.active::after {
  left: 12px;
  right: 12px;
}

/* ── DESKTOP SUBMENU — Active item ── */
.submenu li a.submenu-active {
  background-color: rgba(0, 166, 81, 0.18);
  color: var(--green) !important;
  font-weight: 700;
  padding-left: 22px; /* সামান্য indent */
  border-left: 3px solid var(--green);
}

/* ── MOBILE OFFCANVAS — Active link ── */
.offcanvas-body .nav-link.mobile-active {
  background: rgba(0, 166, 81, 0.08);
  color: var(--green) !important;
  border-left: 4px solid var(--green);
}

/* ── MOBILE SUBMENU — Active item ── */
.mobile-submenu li a.mobile-active {
  background: rgba(0, 166, 81, 0.12);
  color: var(--green) !important;
  font-weight: 700;
  border-left: 3px solid var(--green);
  padding-left: 24px;
}
    /* pages submenu */
/* Parent fix */
.dropdown-custom {
  position: relative;
}

/* Submenu */
.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 180px;
  padding: 8px 0;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .25s ease;

  z-index: 9999; /* 🔥 important */
}

/* submenu items */
.submenu li {
  list-style: none;
}

.submenu li a {
  display: block;
  padding: 10px 16px;
  color: #333;
  font-size: 14px;
  text-decoration: none;
  transition: .2s;
}

.submenu li a:hover {
  background-color: rgba(34, 197, 94, 0.25);
  color: var(--primary-green);
  transition: 0.2s ease-in;
  transform: scale(1.02);
}

/* hover show */
.dropdown-custom:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
    /* pages submenu ends */
    /* Phone on right */
    .nav-phone{
      color: #fff;
    }
    .nav-phone i { font-size: 18px; animation: ring 2s infinite; }
    @keyframes ring {
      0%,100% { transform: rotate(0); }
      10%      { transform: rotate(-15deg); }
      20%      { transform: rotate(15deg); }
      30%      { transform: rotate(-10deg); }
      40%      { transform: rotate(0); }
    }
 
    /* Toggler */
    .navbar-toggler-custom {
      background: rgba(255,255,255,.15);
      border: 2px solid rgba(12, 12, 12, 0.568);
      color: #000;
      border-radius: 8px;
      padding: 6px 10px;
      font-size: 20px;
      cursor: pointer;
      transition: background .2s;
      
    }
    .navbar-toggler-custom:hover { background: rgba(255,255,255,.25); }
 
    /* ── OFFCANVAS ────────────────────────────────── */
    .offcanvas{
      max-width: 80%;
    }
  
    .offcanvas-title { font-weight: 800; font-size: 18px; }
    .offcanvas .btn-close { 
       color: #000; 
      }
 
    .offcanvas-body { 
        padding: 0;
       width: 80%;
     }
    .offcanvas-body .nav-link {
      color: var(--text-dark) !important;
      font-weight: 700;
      font-size: 14.5px;
      padding: 12px 20px !important;
      border-bottom: 1px solid var(--border);
      display: flex; align-items: center; justify-content: space-between;
      transition: background .15s, color .15s;
    }
    .offcanvas-body .nav-link:hover { background: var(--green-light); color: var(--green) !important; }
    .offcanvas-body .nav-link i.arrow { transition: transform .25s; }
    .offcanvas-body .nav-link[aria-expanded="true"] i.arrow { transform: rotate(180deg); }
 
    /* Offcanvas phone */
    .offcanvas-phone {
      padding: 16px 20px;
      font-weight: 800;
      color: var(--green);
      font-size: 15px;
      display: flex; align-items: center; gap: 8px;
      border-top: 2px solid var(--green-light);
    }

    .mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  background: #f9f9f9;
}

.mobile-submenu li {
  list-style: none;

}

.mobile-submenu li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: #333;
}
.mobile-submenu li a:hover{
  background: var(--green-light); 
  color: var(--green) !important;
}

/* open state */
.mobile-menu-item.active .mobile-submenu {
  max-height: 300px;
}

/* arrow rotate */
.mobile-menu-item.active .arrow {
  transform: rotate(180deg);
  transition: .3s;
}
/* eye pop up part */
/* ── Quick View Modal ── */
.qv-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20,20,20,.50);
  backdrop-filter: blur(4px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.qv-backdrop.active {
  display: flex;
  animation: qvFadeIn .22s ease;
}
@keyframes qvFadeIn { from { opacity: 0 } to { opacity: 1 } }

.qv-modal {
  background: #fff;
  border-radius: 18px;
  width: 100%;
  max-width: 720px;
  max-height: 88vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.20);
  animation: qvSlideUp .3s cubic-bezier(.34,1.45,.64,1);
}
@keyframes qvSlideUp {
  from { opacity: 0; transform: translateY(28px) scale(.97) }
  to   { opacity: 1; transform: translateY(0) scale(1) }
}
.qv-modal::-webkit-scrollbar { width: 4px; }
.qv-modal::-webkit-scrollbar-thumb { background: #e5e7eb; border-radius: 10px; }

.qv-close {
  position: absolute;
  top: 12px; right: 12px;
  width: 34px; height: 34px;
  border: none; border-radius: 50%;
  background: #f3f4f6;
  color: #374151;
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
  transition: background .2s, transform .2s;
}
.qv-close:hover { background: #e5e7eb; transform: rotate(90deg); }

.qv-img-side {
  background: #f9fafb;
  border-radius: 18px 0 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  padding: 28px 20px;
}
.qv-img-side img {
  max-width: 100%;
  max-height: 260px;
  object-fit: contain;
  transition: transform .35s ease;
}
.qv-img-side img:hover { transform: scale(1.05); }

.qv-info-side {
  padding: 30px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.qv-category {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: #16a34a;
  background: #f0fdf4;
  border-radius: 20px;
  padding: 3px 10px;
  width: fit-content;
}

.qv-title {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  line-height: 1.25;
  margin: 0;
}

.qv-stars { color: #f59e0b; font-size: 13px; }
.qv-stars .empty { color: #d1d5db; }

.qv-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.qv-price-current {
  font-size: 24px;
  font-weight: 800;
  color: #111;
}
.qv-price-old {
  font-size: 15px;
  color: #9ca3af;
  text-decoration: line-through;
}
.qv-discount {
  font-size: 11px;
  font-weight: 700;
  background: #fef2f2;
  color: #ef4444;
  border-radius: 6px;
  padding: 2px 8px;
}

.qv-desc {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.65;
  border-top: 1px solid #f3f4f6;
  padding-top: 12px;
  margin: 0;
}

.qv-qty-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.qv-qty-label {
  font-size: 13px;
  color: #374151;
  font-weight: 500;
  min-width: 40px;
}
.qv-qty-ctrl {
  display: flex;
  align-items: center;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  background: #f9fafb;
}
.qv-qty-btn {
  width: 34px; height: 34px;
  border: none; background: transparent;
  font-size: 17px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #374151;
  transition: background .18s;
}
.qv-qty-btn:hover { background: #f0fdf4; color: #16a34a; }
.qv-qty-val {
  width: 40px; text-align: center;
  border: none; background: transparent;
  font-size: 14px; font-weight: 600;
  color: #111; outline: none;
}
.qv-qty-val::-webkit-outer-spin-button,
.qv-qty-val::-webkit-inner-spin-button { -webkit-appearance: none; }

.qv-btn-row {
  display: flex;
  gap: 10px;
  margin-top: 2px;
}
.qv-btn-cart {
  flex: 1; padding: 11px 14px;
  border: none; border-radius: 10px;
  background: #22c55e; color: #fff;
  font-size: 13.5px; font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 7px;
  transition: background .2s, transform .15s;
}
.qv-btn-cart:hover { background: #16a34a; transform: translateY(-1px); }
.qv-btn-buy {
  flex: 1; padding: 11px 14px;
  border: 2px solid #22c55e; border-radius: 10px;
  background: transparent; color: #16a34a;
  font-size: 13.5px; font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 7px;
  transition: background .2s, color .2s, transform .15s;
}
.qv-btn-buy:hover { background: #22c55e; color: #fff; transform: translateY(-1px); }

/* Mobile */
@media (max-width: 580px) {
  .qv-modal { grid-template-columns: 1fr; max-height: 90vh; }
  .qv-img-side { border-radius: 18px 18px 0 0; min-height: 200px; padding: 20px; }
  .qv-img-side img { max-height: 175px; }
  .qv-info-side { padding: 18px 16px 20px; gap: 10px; }
  .qv-title { font-size: 17px; }
  .qv-price-current { font-size: 20px; }
  .qv-btn-row { flex-direction: column; }
}
/* eye pop up part ends */
    /* nav ends here */


/* add to cart */
.cp-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 254, 254, 0.767);
  z-index: 1060;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.cp-overlay.active {
  opacity: 1;
  pointer-events: all;
}
 
.cp-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 380px;
  max-width: 100vw;
  height: 100dvh;
  background: #e8f7ef !important;
  z-index: 1061;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 40px rgba(0,0,0,.12);
  font-family: 'Nunito', sans-serif;
}
.cp-drawer.active {
  transform: translateX(0);
}
 
/* Header */
.cp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 1.4rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.cp-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 800;
  color: var(--text-dark);
}

.cp-close {
  width: 34px; height: 34px;
  background: var(--bg-main);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--text-mid);
  font-size: 14px;
  transition: background .15s, color .15s;
}
.cp-close:hover { background: #fde8e8; color: #c0392b; border-color: #f5c6c6; }
 
/* Items scroll area */
.cp-items {
  flex: 1;
  overflow-y: auto;
  padding: 0.5rem 0;
}
.cp-items::-webkit-scrollbar { width: 4px; }
.cp-items::-webkit-scrollbar-track { background: transparent; }
.cp-items::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
 
/* Single item */
.cp-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 1rem 1.4rem;
  border-bottom: 1px solid #f5f2ee;
  transition: background .12s;
  animation: cpSlideIn .25s ease both;
}
.cp-item:hover { background: #fafaf8; }
@keyframes cpSlideIn {
  from { opacity: 0; transform: translateX(10px); }
  to   { opacity: 1; transform: translateX(0); }
}
 
.cp-item-img {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: var(--bg-main);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}
.cp-item-img img{
  width: 50px;
}
.cp-item-info { flex: 1; min-width: 0; }
.cp-item-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cp-item-meta { font-size: 12px; color: var(--text-muted); }
.cp-item-meta strong { color: var(--text-dark); }
 
.cp-remove {
  width: 28px; height: 28px;
  background: #f9f6f2;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 13px;
  flex-shrink: 0;
  transition: background .15s, color .15s, border-color .15s;
}
.cp-remove:hover { background: #fde8e8; color: #c0392b; border-color: #f5c6c6; }
 
/* Remove animation */
.cp-item.removing {
  animation: cpSlideOut .22s ease forwards;
}
@keyframes cpSlideOut {
  to { opacity: 0; transform: translateX(20px); height: 0; padding: 0; margin: 0; overflow: hidden; }
}
 
/* Empty state */
.cp-empty {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 3rem 1rem;
  text-align: center;
  color: var(--text-muted);
}
.cp-empty i { font-size: 48px; color: var(--border); margin-bottom: 12px; }
.cp-empty p { font-size: 14px; font-weight: 600; margin-bottom: 12px; }
.cp-shop-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
}
.cp-shop-link:hover { color: var(--green-dark); }
 
/* Footer */
.cp-footer {
  padding: 1.2rem 1.4rem;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
  background: var(--bg-card);
}
.cp-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.cp-sub-label { font-size: 13px; font-weight: 600; color: var(--text-mid); }
.cp-sub-price { font-size: 18px; font-weight: 800; color: var(--text-dark); letter-spacing: -.3px; }
 
.cp-checkout-btn {
  display: block;
  width: 100%;
  padding: 13px;
  background: var(--green);
  color: #fff;
  text-align: center;
  border-radius: 13px;
  font-size: 14px;
  font-weight: 800;
  font-family: 'Nunito', sans-serif;
  text-decoration: none;
  transition: background .15s, transform .1s;
  margin-bottom: 10px;
}
.cp-checkout-btn:hover { background: var(--green-dark); color: #fff; }
.cp-checkout-btn:active { transform: scale(.98); }
 
.cp-cart-link {
  display: block;
  width: 100%;
  padding: 11px;
  background: var(--green-light);
  color: var(--green-dark);
  text-align: center;
  border-radius: 13px;
  font-size: 13px;
  font-weight: 800;
  font-family: 'Nunito', sans-serif;
  text-decoration: none;
  transition: background .15s;
}
.cp-cart-link:hover { background: #bfe0d3; color: var(--green-dark); }
 
/* Mobile */
@media (max-width: 480px) {
  .cp-drawer { width: 80vw; border-radius: 0; 
  background-color: white;}
}
/* end add to cart  */

    /* footer css starts */
    /* ── Main Footer ── */
    .main-footer {
      background: #0e0d0df5;
      padding: 60px 0 0;
    }
 
    .footer-brand-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 18px;
      text-decoration: none;
    }
 
    /* Logo placeholder — user will replace */
    
    .footer-desc {
      font-size: 0.875rem;
      color: var(--topbar-bg);
      line-height: 1.7;
      margin-bottom: 24px;
      max-width: 280px;
    }
 
    .footer-contact a {
      color: var(--topbar-bg);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 600;
      border-bottom: 2px solid var(--green);
      padding-bottom: 1px;
      transition: color 0.2s;
    }
 
    .footer-contact a:hover { color: var(--green); }
 
    .footer-contact .separator {
      color: var(--topbar-bg);
      margin: 0 10px;
      font-size: 0.85rem;
    }
 
    /* Footer columns */
    .footer-col-title {
      font-size: 1rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 22px;
      position: relative;
    }
 
    .footer-links {
      list-style: none;
      padding: 0;
    }
 
    .footer-links li {
      margin-bottom: 13px;
    }
 
    .footer-links a {
      color: var(--topbar-bg);
      text-decoration: none;
      font-size: 0.88rem;
      transition: color 0.22s ease, padding-left 0.22s ease;
      display: inline-block;
    }
 
    .footer-links a:hover {
      color: var(--green);
      padding-left: 4px;
    }
 
    .footer-links a.active {
      color: #fff;
      font-weight: 600;
    }
 
    /* Divider */
    .footer-divider {
      border-color: var(--border-color);
      margin: 40px 0 0;
    }
 
    /* Bottom bar */
    .footer-bottom {
      background: var(--dark-bg);
      padding: 20px 0;
      border-top: 1px solid var(--border-color);
    }
 
    .footer-bottom p {
      font-size: 0.83rem;
      color: var(--topbar-bg);
      margin: 0;
    }
 
    .payment-icons {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }
 
    .payment-badge {
      background: #fff;
      border-radius: 5px;
      padding: 4px 10px;
      font-size: 0.7rem;
      font-weight: 700;
      color: #111;
      display: flex;
      align-items: center;
      gap: 4px;
      transition: transform 0.2s ease;
    }
 
    .payment-badge:hover { transform: translateY(-2px); }
 
    .payment-badge.apple { background: #111; color: #fff; }
    .payment-badge.visa { background: #1434CB; color: #fff; }
    .payment-badge.discover { background: #e65c00; color: #fff; }
    .payment-badge.mastercard { background: #fff; }
    .payment-badge.secure { background: #f3f4f6; color: #374151; font-size: 0.65rem; }
 
    /* ── Animations ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(22px); }
      to   { opacity: 1; transform: translateY(0); }
    }
 
    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }
 
    .anim-fade-up {
      opacity: 0;
      animation: fadeUp 0.55s ease forwards;
    }
 
    .anim-fade-in {
      opacity: 0;
      animation: fadeIn 0.6s ease forwards;
    }
 
    .d1 { animation-delay: 0.05s; }
    .d2 { animation-delay: 0.12s; }
    .d3 { animation-delay: 0.2s; }
    .d4 { animation-delay: 0.28s; }
    .d5 { animation-delay: 0.36s; }
    .d6 { animation-delay: 0.44s; }
 
    /* Responsive tweaks */
    @media (max-width: 767px) {
      .newsletter-right {
        margin-top: 24px;
      }
      .newsletter-form { flex-direction: column; align-items: stretch; }
      .btn-subscribe { width: 100%; text-align: center; }
      .social-icons { justify-content: flex-start; margin-top: 16px; }
      .payment-icons { justify-content: flex-start; margin-top: 12px; }
      .footer-bottom p { text-align: center; }
    }

    .mySign span  a {
  display: inline-block;
  padding: 5px;
  background: linear-gradient(135deg, #1ba14c, #22c55e);
  color: white;
  text-decoration: none;
  font-family: 'Segoe UI', system-ui, sans-serif;
  font-weight: 600;
  font-size: 14px;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  top: 10px;
}

/* Hover Effect */
.mySign span a:hover {
  transform: translateY(-4px);
  box-shadow: 0 5px 30px rgba(28, 180, 54, 0.644);
  background: linear-gradient(135deg, #1ba14c, #22c55e);
}

/* Active/Click Effect */
.mySign span a:active {
  transform: scale(0.95);
}

/* Nice shine effect */
.mySign span a::before {
  content: '';
  position: absolute;
  top: -70%;
  left: -100%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: 0.7s;
}

.mySign span a:hover::before {
  left: 200%;
}
/* footer css starts */