:root {
      --primary-purple: #7c3aed;
      --primary-purple-hover: #6d28d9;
      --text-dark: #1e293b;
      --text-muted: #64748b;
      --border-color: #f1f5f9;
      --bg-topbar: #f8fafc;
      --container-max-width: 1600px;
    }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--text-dark);
      background-color: #ffffff;
    }

    .container{
      max-width: var(--container-max-width);
      width: 100%;
      margin-left: auto;
      margin-right: auto;
      padding-left: 15px;
      padding-right: 15px;
    }

    .fw-medium-600 { font-weight: 600; }

    /* Remove Bootstrap default dropdown caret arrow */
    .dropdown-toggle::after { display: none !important; }

    /* ================= TOP BAR ================= */
    .top-bar {
      background-color: var(--bg-topbar);
      border-bottom: 1px solid var(--border-color);
      font-size: 13px;
      color: var(--text-muted);
      position: relative;
      z-index: 1030; /* Higher than main-header so dropdowns stay on top */
    }
    .top-bar a {
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.2s ease;
    }
    .top-bar a:hover { color: var(--primary-purple); }

    .ticker-container {
      width: 100%;
      overflow: hidden;
    }
    .ticker-wrap {
      width: 100%;
      overflow: hidden;
      white-space: nowrap;
    }
    .ticker {
      display: inline-block;
      padding-left: 100%;
      animation: ticker-scroll 22s linear infinite;
    }
    .ticker-wrap:hover .ticker { animation-play-state: paused; }
    .ticker-item {
      display: inline-block;
      padding: 0 1.5rem;
      font-size: 13px;
    }
    @keyframes ticker-scroll {
      0% { transform: translate3d(0, 0, 0); }
      100% { transform: translate3d(-100%, 0, 0); }
    }

    /* Language Dropdown Menu Fix */
    .lang-dropdown .dropdown-menu {
      min-width: 130px;
      margin-top: 6px !important;
      border-radius: 8px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
      z-index: 1050;
    }
    .lang-dropdown .dropdown-item {
      font-size: 13px;
      font-weight: 500;
      padding: 6px 12px;
      color: var(--text-dark);
    }
    .lang-dropdown .dropdown-item:hover {
      background-color: #f1f5f9;
      color: var(--primary-purple);
    }

    /* ================= STICKY MAIN HEADER ================= */
    .main-header {
      padding: 16px 0;
      background: #ffffff;
      border-bottom: 1px solid var(--border-color);
      position: sticky;
      top: 0;
      z-index: 1020;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
      transition: all 0.3s ease;
    }

    .header-container-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
    }

    /* DESKTOP: Centered Logo */
    .brand-logo {
      font-size: 28px;
      font-weight: 800;
      color: #000000;
      text-decoration: none;
      letter-spacing: -0.5px;
      z-index: 10;
    }
    .brand-logo .dot { color: var(--primary-purple); }

    @media (min-width: 992px) {
      .brand-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        font-size: 30px;
      }
    }

    /* MOBILE: Left-aligned Logo */
    @media (max-width: 991px) {
      .mobile-menu-trigger { order: 1; }
      .brand-logo { 
        order: 2; 
        margin-left: 12px;
        margin-right: auto;
      }
      .header-actions { order: 3; }
    }

    /* DESKTOP NAV LAYOUT */
    .main-nav {
      display: flex;
      align-items: center;
      gap: 24px;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    /*.main-nav .nav-link-item {
      font-size: 15px;
      font-weight: 500;
      color: var(--text-dark);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 8px 0;
      background: none;
      border: none;
      cursor: pointer;
      transition: color 0.2s ease;
    }*/

    .main-nav .nav-link-item {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

    .main-nav .nav-link-item:hover,
    .main-nav .nav-link-item.show {
      color: var(--primary-purple);
    }

    /* MEGA MENU (DESKTOP) */
    .mega-menu-wrapper { position: static !important; }
    .mega-menu-dropdown {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background: #ffffff;
      border: none;
      border-top: 1px solid var(--border-color);
      box-shadow: 0 20px 30px rgba(0, 0, 0, 0.08);
      padding: 30px 0;
      display: none;
      z-index: 999;
    }
    .mega-menu-dropdown.show {
      display: block;
      animation: fadeIn 0.2s ease;
    }

    /*.mega-menu-column h6 {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.5px;
      color: #0d0d0d;
      margin-bottom: 12px;
      padding-bottom: 8px;
      border-bottom: 1px solid #f1f5f9;
    }*/

.mega-menu-column h6 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #0d0d0d;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f1f5f9;
}

    .mega-menu-column ul { list-style: none; padding: 0; margin: 0; }
    .mega-menu-column ul li { margin-bottom: 8px; }
    .mega-menu-column ul li a {
      color: #475569;
      font-size: 14px;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: all 0.2s ease;
    }

    /* Angle icon styling for submenu */
    .mega-menu-column ul li a i.fa-angle-right {
      font-size: 11px;
      color: #94a3b8;
      transition: transform 0.2s ease, color 0.2s ease;
    }

    .mega-menu-column ul li a:hover { 
      color: var(--primary-purple); 
      padding-left: 2px;
    }
    .mega-menu-column ul li a:hover i.fa-angle-right {
      color: var(--primary-purple);
      transform: translateX(3px);
    }

    /* HEADER ACTIONS */
    .header-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .action-btn {
      background: none;
      border: none;
      color: var(--text-dark);
      font-size: 19px;
      position: relative;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 6px;
      text-decoration: none;
    }
    .action-btn:hover { color: var(--primary-purple); }

    .action-btn .badge-count {
      position: absolute;
      top: -2px;
      right: -6px;
      background-color: var(--primary-purple);
      color: #ffffff;
      font-size: 10px;
      font-weight: 700;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* SEARCH POPUP */
    .search-wrapper { position: relative; }
    .search-popup {
      position: absolute;
      top: calc(100% + 15px);
      right: 0;
      width: 350px;
      background: #ffffff;
      border-radius: 16px;
      padding: 16px;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
      border: 1px solid var(--border-color);
      z-index: 1000;
      display: none;
    }
    .search-popup.active { display: block; animation: fadeIn 0.2s ease; }
    .search-close-btn {
      position: absolute;
      top: -10px;
      right: -10px;
      width: 28px;
      height: 28px;
      background-color: var(--primary-purple);
      color: #ffffff;
      border-radius: 50%;
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }
    .search-box-inner {
      display: flex;
      align-items: center;
      border: 1.5px solid var(--primary-purple);
      border-radius: 50px;
      padding: 3px 3px 3px 14px;
    }
    .search-box-inner input {
      border: none;
      outline: none;
      width: 100%;
      font-size: 13px;
      background: transparent;
    }
    .search-box-inner .btn-submit-search {
      background-color: var(--primary-purple);
      color: #ffffff;
      border: none;
      border-radius: 50px;
      padding: 8px 16px;
      font-size: 13px;
      font-weight: 600;
    }

    @media (max-width: 576px) {
      .search-popup {
        position: fixed;
        top: 70px;
        left: 15px;
        right: 15px;
        width: auto;
      }
    }

    /* CART OFFCANVAS & QTY */
    .cart-item-img {
      width: 60px;
      height: 60px;
      object-fit: cover;
      border-radius: 8px;
    }
    .qty-control {
      display: flex;
      align-items: center;
      border: 1px solid #e2e8f0;
      border-radius: 6px;
      overflow: hidden;
      width: fit-content;
      margin-top: 4px;
    }
    .qty-btn {
      background: #f8fafc;
      border: none;
      width: 24px;
      height: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      cursor: pointer;
    }
    .qty-input {
      width: 30px;
      text-align: center;
      border: none;
      font-size: 12px;
      font-weight: 600;
      background: transparent;
    }

    /* MOBILE DRAWER & SUB-MENU */
    .mobile-drawer-header {
      background-color: #f8fafc;
      padding: 16px 20px;
    }

    .mobile-menu-link {
      font-size: 15px;
      font-weight: 600;
      color: var(--text-dark);
      text-decoration: none;
      padding: 12px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid #f1f5f9;
      transition: all 0.2s ease;
    }
    
    .mobile-menu-link[aria-expanded="true"] {
      color: var(--primary-purple);
    }

    .mobile-menu-link[aria-expanded="true"] i {
      transform: rotate(180deg);
      color: var(--primary-purple) !important;
    }

    .mobile-menu-link i {
      transition: transform 0.2s ease;
    }

    .mobile-submenu-box {
      background-color: #f8fafc;
      border-radius: 12px;
      padding: 12px 16px;
      margin: 8px 0 12px 0;
      border: 1px solid #f1f5f9;
    }

    .mobile-submenu-group-title {
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: var(--primary-purple);
      margin-top: 8px;
      margin-bottom: 6px;
    }

    .mobile-submenu-item {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 7px 0;
      color: #475569;
      font-size: 14px;
      font-weight: 500;
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .mobile-submenu-item i {
      font-size: 11px;
      color: #94a3b8;
    }

    .mobile-submenu-item:hover {
      color: var(--primary-purple);
    }

    .mobile-support-box {
      background: #f8fafc;
      border: 1px solid var(--border-color);
      border-radius: 12px;
      padding: 14px;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(-6px); }
      to { opacity: 1; transform: translateY(0); }
    }

  .features-section-area {
    background-color:#f5f5f5; /* Soft beige background */
    background: var(--bg-topbar);
    border-radius: 0px;
    padding: 20px 24px;
    margin: 0px 0;
  }

  .feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 15px;
  }

  /* Right vertical border for columns (Desktop) */
  .feature-col:not(:last-child) {
    border-right: 1px solid #e7ded5;
  }

  .feature-icon {
    font-size: 32px;
    color: #2b1f1d;
    flex-shrink: 0;
    line-height: 1;
  }

  .feature-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2px;
  }

  .feature-subtitle {
    font-size: 13px;
    color: #665f59;
    margin-bottom: 0;
  }

  /* Mobile responsiveness */
  @media (max-width: 991px) {
    .feature-col:not(:last-child) {
      border-right: none;
      border-bottom: 1px solid #e7ded5;
      padding-bottom: 15px;
      margin-bottom: 15px;
    }
  }


 /* slider*/

 /* slider*/

/* category section*/
.category-section {
    padding: 20px 0;
  }

  /* Ultra-Smooth Category Card */
  .category-card {
    display: block;
    background: #ffffff;
    border-radius: 0px;
    overflow: hidden;
    text-decoration: none;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    /* Ultra smooth GPU accelerated transition */
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
                box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1),
                border-color 0.4s ease;
    will-change: transform;
    backface-visibility: hidden;
    text-align: center;
  }

  .category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
  }

  /* Image Container with Soft Tone & Smooth Zoom */
 .category-img-box {
  width: 100%;
  height: 250px;
  background-color: #f7f4f0;
  overflow: hidden;
  position: relative;
}

  .category-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Smooth scaling transition */
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
    backface-visibility: hidden;
  }

  .category-card:hover .category-img-box img {
    transform: scale(1.08);
  }

  /* Info Section */
  .category-info {
    padding: 14px 10px 18px 10px;
  }

  .category-name {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .shop-now-btn {
    font-size: 12px;
    font-weight: 600;
    color:var(--primary-purple);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), gap 0.3s ease;
  }

  .category-card:hover .shop-now-btn {
    gap: 8px;
  }

  .shop-now-btn i {
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .category-card:hover .shop-now-btn i {
    transform: translateX(3px);
  }

  @media (max-width: 576px) {
    .section-title { font-size: 20px; }
    .category-img-box { height: 160px; }
  }
/* category section*/


  /*footer*/
  .site-footer {
    background-color: #0f172a; /* Deep Slate Navy */
    color: #94a3b8;
    font-size: 14px;
    padding-top: 60px;
    padding-bottom: 25px;
  }

  .footer-brand {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: -0.5px;
  }
  
  .footer-brand .dot {
    color: #7c3aed; /* Brand primary color */
  }

.footer-title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-links li {
    margin-bottom: 12px;
  }

  .footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .footer-links a:hover {
    color: #ffffff;
    transform: translateX(4px);
  }

  /* Social Icons */
  .social-icons a {
    width: 36px;
    height: 36px;
    background-color: #1e293b;
    color: #ffffff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid #334155;
  }

  .social-icons a:hover {
    background-color: #7c3aed;
    border-color: #7c3aed;
    transform: translateY(-3px);
  }

  /* Contact List Style */
  .contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: #94a3b8;
  }

  .contact-list i {
    color:#94a3b8;
    /*font-size: 13px;*/
    margin-top: 2px;
  }

  .footer-bottom {
    border-top: 1px solid #1e293b;
    margin-top: 50px;
    padding-top: 25px;
  }

  .developer-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
  }

  .developer-link:hover {
    color: #7c3aed;
  }
  /*footer*/


 /* product section*/
 .products-section {
    padding: 20px 0;
  }

 /* Section Header */
  .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
  }

  .section-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0;
    letter-spacing: -0.3px;
  }

  .view-all-link {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .view-all-link:hover {
    color: var(--primary-purple);
    transform: translateX(4px);
  }

  /* Product Card Container */
  .product-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius:0px;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
                box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1),
                border-color 0.4s ease;
    will-change: transform;
  }

  .product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
    border-color: #e2e8f0;
  }

  /* Image Container & Actions */
  .product-img-box {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    background-color: var(--bg-topbar);
    overflow: hidden;
  }

  .product-img-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
  }

  .product-card:hover .product-img-box img {
    transform: scale(1.06);
  }

  /* Discount / Status Badges */
  .badge-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--primary-purple);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    z-index: 2;
    letter-spacing: 0.3px;
  }

  /* Wishlist Icon Button */
  .btn-wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    background: #ffffff;
    border: none;
    border-radius: 50%;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    z-index: 2;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .btn-wishlist:hover {
    background-color: #ef4444;
    color: #ffffff;
  }

  /* Product Details Content */
  .product-details {
    padding: 16px 14px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }

  .product-category {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .product-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 38px;
  }

  .product-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .product-title a:hover {
    color: var(--primary-purple);
  }

  /* Ratings */
  .product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #f59e0b;
    margin-bottom: 12px;
  }

  .product-rating .review-count {
    color: var(--text-muted);
    font-size: 11px;
    margin-left: 2px;
  }

  /* Price & Add to Cart Action */
  .product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid var(--border-color);
  }

  .price-box {
    display: flex;
    align-items: baseline;
    gap: 6px;
  }

  .current-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
  }

  .old-price {
    font-size: 12px;
    color: var(--text-muted);
    text-decoration: line-through;
  }

  .btn-add-cart {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background-color: var(--bg-topbar);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
  }

  .product-card:hover .btn-add-cart {
    background-color: var(--primary-purple);
    color: #ffffff;
    border-color: var(--primary-purple);
  }

  .btn-add-cart:hover {
    background-color: var(--primary-purple-hover) !important;
    border-color: var(--primary-purple-hover) !important;
  }

  @media (max-width: 576px) {
    .section-title { font-size: 20px; }
    .product-details { padding: 12px 10px; }
  }

  /* Slider Navigation Arrows */
  .slider-arrows {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .arrow-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .arrow-btn:hover {
    background-color: var(--primary-purple);
    color: #ffffff;
    border-color: var(--primary-purple);
  }

  .arrow-btn.swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background-color: var(--bg-topbar);
    border-color: var(--border-color);
    color: var(--text-muted);
  }

  /* Swiper Padding Fix for Box Shadows */
  .swiper {
    padding: 10px 5px 20px 5px !important;
    margin: -10px -5px -20px -5px !important;
  }

 /* product section*/


 /*mobile bottom meu*/
 /* Desktop View: Hidden by default */
.mobile-bottom-nav {
  display: none;
}

/* Mobile View Only (768px or lower) */
@media (max-width: 768px) {
  /* Site Footer overlap bondho korar jonno body-te extra space */
  body {
    padding-bottom: 60px;
  }

  .mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #ffffff;
    border-top: 1px solid var(--border-color, #f1f5f9);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.06);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 9999;
    padding: 0 10px;
  }

  .mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 500;
    flex: 1;
    gap: 3px;
    transition: all 0.3s ease;
  }

  .mobile-bottom-nav .nav-item i {
    font-size: 18px;
  }

  .mobile-bottom-nav .nav-item:hover,
  .mobile-bottom-nav .nav-item.active {
    color: var(--primary-purple, #7c3aed);
  }

  /* Center Floating Home Button Style */
  .mobile-bottom-nav .home-item {
    position: relative;
    top: -14px;
  }

  .mobile-bottom-nav .home-btn {
  width: 50px;
  height: 50px;
  background-color: var(--primary-purple, #7c3aed);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  box-shadow: 0 6px 16px rgba(124, 58, 237, 0.35);
  border: 4px solid #ffffff;
  transition: transform 0.2s ease;
  margin-top: 30px;
  margin-left: 10px;
}

  .mobile-bottom-nav .home-btn i {
    font-size: 20px;
    color: #ffffff;
  }

  .mobile-bottom-nav .home-item:hover .home-btn {
    transform: scale(1.05);
  }

  /* Cart Count Badge */
  .mobile-bottom-nav .icon-badge-wrapper {
    position: relative;
    display: inline-flex;
  }

  .mobile-bottom-nav .badge {
    position: absolute;
    top: -6px;
    right: -10px;
    background-color: var(--primary-purple, #7c3aed);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
 /*mobile bottom meu*/


 /*call to action*/
 /* Floating CTA Wrapper */
.floating-cta-wrapper {
  position: fixed;
  bottom: 25px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 99999;
}

/* Common Base Button Style */
.cta-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
  position: relative;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
  animation: ctaPulse 2s infinite;
}

.cta-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.cta-btn i {
  position: relative;
  z-index: 2;
}

/* Call Now Button Style */
.cta-call {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

/* Messenger Button Style (Gradient like original Messenger) */
.cta-messenger {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
}

/* WhatsApp Button Style */
.cta-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

/* Ripple / Pulse Outer Ring Animation Effect */
.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0.8;
  z-index: 1;
  animation: ctaRipple 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.cta-call::before { color: #2563eb; }
.cta-messenger::before { color: #0084ff; }
.cta-whatsapp::before { color: #25d366; }

/* Subtle Gentle Shake/Bounce Animation for Icon */
.cta-btn:hover i {
  animation: ctaShake 0.5s ease-in-out;
}

/* Keyframes Definitions */
@keyframes ctaRipple {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes ctaPulse {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes ctaShake {
  0%, 100% { transform: rotate(0deg); }
  20% { transform: rotate(-15deg); }
  40% { transform: rotate(15deg); }
  60% { transform: rotate(-10deg); }
  80% { transform: rotate(10deg); }
}

/* Mobile responsive alignment (If mobile bottom navigation exists) */
@media (max-width: 768px) {
  .floating-cta-wrapper {
    bottom: 75px; /* Mobile bottom nav-er upor uthe thakbe */
    right: 15px;
    gap: 10px;
  }

  .cta-btn {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }
}
 /*call to action*/