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

   
    :root {
      --primary: #FF741F;
      --primary-dark: #E05D0A;
      --primary-light: #FF9A4A;
      --secondary: #000000;
      --accent: #FF9A3E;
      --dark: #121212;
      --glass: rgba(255, 255, 255, 0.05);
      --glass-border: rgba(255, 116, 31, 0.2);
    }
   body {
      background: linear-gradient(135deg, #0a0a0a 0%, #121212 100%);
      font-family: 'Inter', sans-serif;
      color: #ffffff;
      padding-bottom: 70px;
      padding-top: 38px;
    }

     .app-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: rgba(18, 18, 18, 0.95);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--glass-border);
      z-index: 1050;
      padding: 12px 20px;
    }

    .search-header-container {
      position: fixed;
      top: 57px;
      left: 0;
      width: 100%;
      background: rgba(18, 18, 18, 0.95);
      backdrop-filter: blur(20px);
      padding: 12px 20px;
      border-bottom: 1px solid var(--glass-border);
      z-index: 1040;
    }

    .app-footer {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background: rgba(18, 18, 18, 0.95);
      backdrop-filter: blur(20px);
      border-top: 1px solid var(--glass-border);
      z-index: 1050;
      padding: 10px 24px;
    }

    .footer-nav {
      display: flex;
      justify-content: space-around;
      align-items: center;
    }

    .footer-nav .nav-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      background: transparent;
      border: none;
      color: #6c6c6c;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .footer-nav .nav-item i {
      font-size: 22px;
      margin-bottom: 4px;
      transition: transform 0.2s;
    }

    .footer-nav .nav-item span {
      font-size: 11px;
      font-weight: 500;
    }

    .footer-nav .nav-item.active {
      color: var(--primary);
      background: rgba(255, 116, 31, 0.15);
    }

    .footer-nav .nav-item:active i {
      transform: scale(0.9);
    }
    
    /*New*/
    /*==================================
Modern Bottom Navigation
==================================*/

.app-footer{

    position:fixed;

    bottom:0;

    left:0;

    width:100%;

    z-index:1050;

    padding:10px 18px;

    background:rgba(18,18,18,.96);

    backdrop-filter:blur(20px);

    border-top:1px solid rgba(255,255,255,.06);

    box-shadow:0 -8px 25px rgba(0,0,0,.30);

}

.footer-nav{

    display:flex;

    justify-content:space-around;

    align-items:center;

}

.footer-nav .nav-item{

    flex:1;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    color:#8f8f8f;

    padding:6px 0;

    position:relative;

    transition:.25s;

}

.footer-nav .nav-item .nav-icon{

    position:relative;

    width:48px;

    height:48px;

    border-radius:16px;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.25s;

}

.footer-nav .nav-item i{

    font-size:23px;

    color:#f1f1f1;

    transition:.25s;

}

.footer-nav .nav-item .nav-text{

    margin-top:6px;

    font-size:11px;

    font-weight:500;

    color:#c7c7c7;

    transition:.25s;

}

/*====================
Active
====================*/

.footer-nav .nav-item.active .nav-icon{

    background:linear-gradient(135deg,#FF741F,#FFA53D);

    box-shadow:0 10px 24px rgba(255,116,31,.35);

}

.footer-nav .nav-item.active i{

    color:#fff;

}

.footer-nav .nav-item.active .nav-text{

    color:#fff;

    font-weight:600;

}

.footer-nav .nav-item.active::after{

    content:"";

    position:absolute;

    bottom:0;

    left:50%;

    transform:translateX(-50%);

    width:22px;

    height:4px;

    border-radius:20px;

    background:#FF741F;

}

/*====================
Hover
====================*/

.footer-nav .nav-item:active{

    transform:scale(.95);

}

/*====================
Cart Badge
====================*/

.cart-count{

    position:absolute;

    top:2px;

    right:2px;

    min-width:18px;

    height:18px;

    border-radius:50%;

    background:#ff3b30;

    color:#fff;

    font-size:10px;

    font-weight:700;

    display:flex;

    align-items:center;

    justify-content:center;

    border:2px solid #171717;

}

/*====================
Mobile
====================*/

@media(max-width:576px){

    .app-footer{

        padding:8px 12px;

    }

    .footer-nav .nav-item .nav-icon{

        width:44px;

        height:44px;

    }

    .footer-nav .nav-item i{

        font-size:22px;

    }

    .footer-nav .nav-item .nav-text{

        font-size:11px;

    }

}

    /* Glowing Button */
    .btn-primary-custom {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
      border: none;
      color: #000000;
      font-weight: 700;
      padding: 12px 24px;
      border-radius: 60px;
      transition: all 0.3s;
      box-shadow: 0 4px 15px rgba(255, 116, 31, 0.3);
    }

    .btn-primary-custom:hover, .btn-primary-custom:active {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(255, 116, 31, 0.4);
    }

    .btn-outline-custom {
      background: transparent;
      border: 1.5px solid var(--primary);
      color: var(--primary);
      border-radius: 60px;
      font-weight: 600;
      backdrop-filter: blur(10px);
    }

    /* Modern Category Card - Glassmorphism */
    .category-card-modern {
      background: var(--glass);
      backdrop-filter: blur(10px);
      border-radius: 28px;
      padding: 18px 12px;
      text-align: center;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
      border: 1px solid var(--glass-border);
      position: relative;
      overflow: hidden;
    }

    .category-card-modern::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 116, 31, 0.2), transparent);
      transition: left 0.5s;
    }

    .category-card-modern:hover::before {
      left: 100%;
    }

    .category-card-modern:hover {
      transform: translateY(-8px);
      border-color: var(--primary);
      box-shadow: 0 12px 30px rgba(255, 116, 31, 0.2);
    }

    .category-icon-wrapper {
      width: 64px;
      height: 64px;
      background: linear-gradient(135deg, rgba(255, 116, 31, 0.2), rgba(255, 154, 62, 0.1));
      border-radius: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 12px;
      transition: 0.3s;
    }

    .category-card-modern i {
      font-size: 32px;
      color: var(--primary);
    }

    .category-card-modern span {
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.5px;
    }

    /* Pharmacy Card */
    .pharmacy-card {
      background: var(--glass);
      backdrop-filter: blur(10px);
      border-radius: 24px;
      padding: 16px;
      margin-bottom: 14px;
      cursor: pointer;
      transition: all 0.3s;
      border: 1px solid var(--glass-border);
    }

    .pharmacy-card:hover {
      transform: translateX(5px);
      border-color: var(--primary);
      background: rgba(255, 116, 31, 0.08);
    }

    /* Product Card */
    .product-card {
      background: linear-gradient(135deg, #1a1a1a 0%, #1e1e1e 100%);
      border-radius: 22px;
      padding: 14px;
      margin-bottom: 12px;
      transition: all 0.3s;
      border: 1px solid rgba(255, 116, 31, 0.1);
    }

    .product-card:hover {
      transform: scale(1.01);
      border-color: var(--primary);
    }

    /* Floating Buttons */
    .floating-btn {
      position: fixed;
      z-index: 1060;
      width: 60px;
      height: 60px;
      border-radius: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      border: none;
    }

    .floating-cart {
      bottom: 90px;
      right: 20px;
      background: linear-gradient(135deg, var(--primary), var(--primary-light));
    }

    .floating-vendor {
      bottom: 175px;
      right: 20px;
      background: linear-gradient(135deg, #FF9A3E, #FFB86C);
    }

    .floating-btn i {
      font-size: 28px;
      color: #000000;
    }

    .floating-btn:hover {
      transform: scale(1.1);
    }

    .cart-badge {
      position: absolute;
      top: -5px;
      right: -5px;
      background: #FF3B30;
      color: white;
      border-radius: 50%;
      width: 24px;
      height: 24px;
      font-size: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    }

    /* Category Slider */
    .category-slider {
      display: flex;
      overflow-x: auto;
      gap: 12px;
      padding: 8px 0 16px 0;
      scrollbar-width: thin;
    }

    .category-chip {
      background: var(--glass);
      backdrop-filter: blur(10px);
      border-radius: 40px;
      padding: 10px 22px;
      font-size: 14px;
      font-weight: 500;
      white-space: nowrap;
      cursor: pointer;
      transition: all 0.3s;
      border: 1px solid var(--glass-border);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .category-chip i {
      font-size: 16px;
    }

    .category-chip.active {
      background: linear-gradient(135deg, var(--primary), var(--primary-light));
      color: #000;
      border-color: transparent;
    }

    /* Banner Slider */
    .banner-slider {
      border-radius: 28px;
      overflow: hidden;
      margin-bottom: 24px;
    }

    .carousel-item img {
      height: 160px;
      object-fit: cover;
      width: 100%;
      border-radius: 28px;
    }

    /* Modern Checkbox & Radio */
    .modern-checkbox, .modern-radio {
      display: flex;
      align-items: center;
      gap: 12px;
      cursor: pointer;
      margin-bottom: 14px;
      padding: 8px 12px;
      background: var(--glass);
      border-radius: 16px;
      transition: 0.2s;
    }

    .modern-checkbox input, .modern-radio input {
      appearance: none;
      width: 20px;
      height: 20px;
      border: 2px solid var(--primary);
      border-radius: 6px;
      background: transparent;
      cursor: pointer;
      position: relative;
    }

    .modern-checkbox input:checked {
      background-color: var(--primary);
    }

    .modern-checkbox input:checked::after {
      content: "✓";
      position: absolute;
      color: black;
      font-size: 14px;
      font-weight: bold;
      top: -1px;
      left: 3px;
    }

    .modern-radio input {
      border-radius: 50%;
    }

    .modern-radio input:checked {
      border: 5px solid var(--primary);
    }

    /* Modal */
    .modal-modern .modal-content {
      background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
      border-radius: 32px;
      border: 1px solid var(--glass-border);
      color: white;
    }

    /* Alert */
    .modern-alert {
      position: fixed;
      top: 120px;
      left: 16px;
      right: 16px;
      z-index: 1200;
      background: linear-gradient(135deg, #1f1f1f, #1a1a1a);
      border-left: 4px solid var(--primary);
      border-radius: 20px;
      padding: 14px 18px;
      animation: slideDown 0.3s ease;
      backdrop-filter: blur(10px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    }

    @keyframes slideDown {
      from { transform: translateY(-80px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }

    .rating-stars {
      color: var(--primary-light);
      font-size: 13px;
    }

    .rx-badge {
      background: linear-gradient(135deg, #FF3B30, #FF6B6B);
      color: white;
      border-radius: 6px;
      padding: 2px 8px;
      font-size: 10px;
      font-weight: 600;
      margin-left: 8px;
    }

    /* Drawer Menu */
    .offcanvas-dark {
      background: linear-gradient(135deg, #0a0a0a, #0f0f0f);
      color: white;
      width: 300px;
    }

    .offcanvas-dark .list-group-item {
      background-color: transparent;
      color: #e0e0e0;
      border: none;
      padding: 14px 20px;
      cursor: pointer;
      transition: 0.2s;
      margin: 4px 8px;
      border-radius: 16px;
    }

    .offcanvas-dark .list-group-item:hover {
      background-color: rgba(255, 116, 31, 0.15);
    }

    .offcanvas-dark .list-group-item i {
      width: 28px;
      margin-right: 12px;
      color: var(--primary);
      font-size: 18px;
    }

    .submenu-item {
      padding-left: 58px !important;
      font-size: 14px;
      background-color: rgba(255, 116, 31, 0.05);
    }

    /* Blur effect */
    .glass-input {
      background: var(--glass) !important;
      backdrop-filter: blur(10px);
      border: 1px solid var(--glass-border) !important;
      color: white !important;
      border-radius: 60px !important;
    }

    .glass-input:focus {
      border-color: var(--primary) !important;
      box-shadow: 0 0 0 2px rgba(255, 116, 31, 0.2) !important;
    }

    /* Prescription notice */
    .prescription-notice {
      background: rgba(255, 116, 31, 0.1);
      border-radius: 12px;
      padding: 8px 12px;
      font-size: 11px;
      margin-top: 8px;
    }
    .offcanvas.offcanvas-start {
      width: 280px !important;
    }
    input::placeholder {
    color: #c3b2b2 !important; /* your color */
    opacity: 1;  /* ensure full visibility */
}
.fab-stack {
    position: fixed;
    right: 20px;
    bottom: 90px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 1060;
}

/* Common FAB */
.fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    cursor: pointer;
    
    transition: 0.3s;
}

/* Cart */
.fab-cart {
    background: linear-gradient(135deg, #FF741F, #FF9A3E);
}

/* Vendor */
.fab-vendor {
    background: linear-gradient(135deg, #FF9A3E, #FFB86C);
}

/* Hover */
.fab:hover {
    transform: scale(1.1);
}
.fab {
    position: relative; /* IMPORTANT */
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;

    background: #ff3b30;
    color: #fff;

    width: 22px;
    height: 22px;

    font-size: 11px;
    font-weight: bold;

    border-radius: 50%;

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

.pharmacy-card-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 14px;
    border-radius: 18px;

    background: linear-gradient(135deg, #1a1a1a, #121212);
    border: 1px solid rgba(255,116,31,0.1);

    margin-bottom: 14px;
    transition: 0.3s;
}

.pharmacy-card-modern:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
}

.ph-left {
    display: flex;
    gap: 12px;
    align-items: center;
}

.ph-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;

    background: rgba(255,116,31,0.15);
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
}

.ph-name {
    font-weight: 600;
    font-size: 14px;
}

.verify {
    color: var(--primary);
    font-size: 12px;
    margin-left: 4px;
}

.ph-meta {
    font-size: 12px;
    color: #aaa;
}

.ph-category {
    font-size: 11px;
    color: #777;
}

.arrow {
    color: var(--primary);
}

.product-header {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 20px;
}

.back-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,116,31,0.3);
    background: transparent;
    color: var(--primary);
}

.ph-title {
    font-weight: 600;
}

.ph-sub {
    font-size: 12px;
    color: #888;
}

/* Product */
.product-card-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 14px;
    border-radius: 18px;

    background: linear-gradient(135deg, #1a1a1a, #121212);
    border: 1px solid rgba(255,116,31,0.1);

    margin-bottom: 14px;
}

.product-left {
    display: flex;
    gap: 12px;
}

.product-img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255,116,31,0.15);

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

.product-info .title {
    font-size: 14px;
    font-weight: 600;
}

.product-info .price {
    color: var(--primary);
    font-weight: bold;
}

.product-info span {
    font-size: 11px;
    color: #777;
}

.rx {
    font-size: 11px;
    color: #ff6b6b;
}

/* Add Button */
.add-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;

    border: none;
    background: linear-gradient(135deg, #FF741F, #FF9A3E);

    display: flex;
    align-items: center;
    justify-content: center;
}
.pharmacy-header {
    position: relative;
    margin-bottom: 20px;
}

/* Banner */
.pharmacy-banner img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 20px;
    opacity: 0.9;
}

/* Back button overlay */
.back-btn {
    position: absolute;
    top: 10px;
    left: 10px;

    width: 38px;
    height: 38px;

    border-radius: 50%;
    border: none;

    background: rgba(0,0,0,0.5);
    color: white;

    backdrop-filter: blur(10px);
    z-index: 2;
}

/* Info section */
.pharmacy-info {
    margin-top: 12px;
    padding: 0 6px;
}

/* Title */
.ph-title {
    font-size: 16px;
    font-weight: 600;
}

.verify {
    color: var(--primary);
    font-size: 14px;
    margin-left: 5px;
}

/* Meta */
.ph-meta {
    font-size: 12px;
    color: #aaa;
    margin-top: 2px;
}

/* Address */
.ph-address {
    font-size: 12px;
    color: #888;
    margin-top: 4px;

    display: flex;
    align-items: center;
    gap: 5px;
}


.pharmacy-hero {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 16px;
}

/* Image */
.hero-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

/* Dark gradient overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.9));
}

/* Top section */
.hero-top {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
}

/* Back button */
.back-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;

    background: rgba(0,0,0,0.5);
    border: none;
    color: white;

    backdrop-filter: blur(10px);
}

/* Bottom info */
.hero-info {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    z-index: 2;
}

/* Title */
.ph-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

/* Verified */
.verify {
    color: var(--primary);
    font-size: 14px;
    margin-left: 5px;
}

/* Meta */
.ph-meta {
    font-size: 12px;
    color: #ddd;
    margin-top: 2px;
}

/* Address */
.ph-address {
    font-size: 11px;
    color: #bbb;
    margin-top: 4px;

    display: flex;
    align-items: center;
    gap: 5px;
}
 .hero-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

/* Smooth fade */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.2) 0%,
        rgba(0,0,0,0.6) 50%,
        rgba(0,0,0,1) 100%
    );
}

  /* Main UI */
  .sticky-top-area {
    background: white;
    z-index: 100;
    padding: 12px 16px 8px 16px;
    border-bottom: 1px solid #e5e5e5;
    flex-shrink: 0;
  }

  .app-header h5 {
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    font-size: 1.4rem;
  }

  .app-header span {
    color: var(--primary);
  }

  .scrollable-content {
    flex: 1;
    overflow-y: auto;
    padding: 16px 16px 20px 16px;
    scroll-behavior: smooth;
    padding-bottom: 150px;
  }

  #alertContainer {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 400px;
    z-index: 2100;
    pointer-events: none;
  }

  #alertContainer .alert {
    pointer-events: auto;
    margin-bottom: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 0.85rem;
  }

  .card {
    border: none;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 16px;
  }

  .btn-primary {
    background: var(--primary);
    border: none;
    border-radius: 14px;
    padding: 12px;
    font-weight: 600;
  }

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

  .price-tag {
    color: var(--primary);
    font-weight: 700;
  }

  .page.active-page {
    display: block;
  }

  .bottom-menu {
    background: white;
    border-top: 1px solid #e5e5e5;
    padding: 8px 12px 12px 12px;
    flex-shrink: 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 999;
    padding-bottom: max(env(safe-area-inset-bottom), 10px);
    border-top: 1px solid #eee;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
  }

  .bottom-menu-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }

  .menu-item {
    color: #8e8e93;
    font-size: 1.3rem;
    text-align: center;
    cursor: pointer;
    padding: 8px 0;
    border-radius: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .menu-item.active {
    color: var(--primary);
    background: rgba(255, 116, 31, 0.1);
  }

  .menu-item span {
    font-size: 0.65rem;
    font-weight: 500;
  }

  /* Category Styles */
  .category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 16px 0;
  }

  .category-item {
    text-align: center;
    cursor: pointer;
  }

  .category-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f8f9fa, #fff);
    border-radius: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-size: 1.8rem;
    color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
  }

  .category-item span {
    font-size: 0.75rem;
    font-weight: 500;
    color: #444;
  }

  .carousel-item {
    height: 150px;
    border-radius: 24px;
    overflow: hidden;
  }

  .salon-img {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #f8f9fa, #fff);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.8rem;
    border: 1px solid #f0f0f0;
    flex-shrink: 0;
  }

  .list-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 14px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
     border-radius: 18px;
     margin-bottom:10px;
  }
    .notification-icon { 
        font-size: 1.3rem; color: #64748b; cursor: pointer; position: relative; 
        
    }
  .badge-primary {
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
  }

  .service-card {
    cursor: pointer;
    transition: transform 0.2s;
    margin-bottom: 12px;
  }

  .service-card:active {
    transform: scale(0.98);
  }

  .quantity-selector {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
  }

  .quantity-btn {
    width: 32px;
    height: 32px;
    border-radius: 16px;
    background: #f0f0f0;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    cursor: pointer;
  }

  .price-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
  }

  .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
  }

  .service-item-full {
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 16px;
    background: white;
  }

  .search-box {
    background: #f5f7fb;
    border-radius: 30px;
    padding: 12px 20px;
    border: 1px solid #e5e5e5;
    width: 100%;
    font-size: 1rem;
    outline: none;
  }

  .search-tab {
    padding: 8px 16px;
    border-radius: 30px;
    background: #f0f0f0;
    cursor: pointer;
    transition: all 0.2s;
  }

  .search-tab.active {
    background: var(--primary);
    color: white;
  }

  .search-result-item {
    padding: 12px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.2s;
  }

  .search-result-item:hover {
    background: #fafafa;
  }

  .category-chip {
    display: inline-block;
    padding: 4px 12px;
    background: #f0f0f0;
    border-radius: 20px;
    font-size: 0.7rem;
    margin-right: 8px;
    margin-bottom: 8px;
    cursor: pointer;
  }

  .category-chip.active {
    background: var(--primary);
    color: white;
  }

  /*Remove line from acnhor tag*/
  .category-item {
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s;
    text-decoration: none;
    color: inherit;
  }

  .decoration-none {
    text-decoration: none;
  }

 

  .btn-primary {
    --bs-btn-hover-bg: #080808;
    --bs-btn-bg: #080808;
    --bs-btn-hover-border-color: #080808;
    --bs-btn-active-bg: #080808;
    --bs-btn-active-border-color: #080808;
    --bs-btn-disabled-bg: #080808;
    --bs-btn-disabled-border-color: #080808;
  }
.btn:hover {
    color: var(--bs-btn-hover-color);
    background-color: var(--primary);
    border-color: var(--primary);
}
  /* Modern autocomplete dropdown */
  .ui-autocomplete {
    max-height: 260px;
    overflow-y: auto;
    overflow-x: hidden;
    border-radius: 14px;
    border: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    padding: 8px 0;
    background: #fff;
    z-index: 9999 !important;
  }

  /* Each item */
  .ui-menu-item-wrapper {
    padding: 12px 16px !important;
    font-size: 14px;
    border-bottom: 1px solid #f1f1f1;
    line-height: 1.4;
  }

  /* Hover / active */
  .ui-state-active,
  .ui-menu-item-wrapper:hover {
    background: #f4f8ff !important;
    color: #000 !important;
    border-left: 4px solid var(--primary);
  }

  /* Remove old jQuery borders */
  .ui-menu-item {
    border: none;
  }

  .ui-widget-content {
    border: none;
  }

  /*New alert*/
  #snackbar {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 280px;
    max-width: 90%;
    background: #1c1c1c;
    color: #fff;
    padding: 14px 18px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 500;
    z-index: 9999;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s ease;
  }

  /* show */
  #snackbar.show {
    bottom: 20px;
  }

  /* success */
  #snackbar.success {
    background: linear-gradient(135deg, #28a745, #20c997);
  }

  /* error */
  #snackbar.error {
    background: linear-gradient(135deg, #dc3545, #ff6b6b);
  }

  /* warning */
  #snackbar.warning {
    background: linear-gradient(135deg, #ff9800, #ffc107);
  }

  /* icon */
  .snack-icon {
    font-size: 18px;
  }

  /* Error text */
  .error-text {
    font-size: 12px;
    color: #ff4d4f;
    margin-top: 4px;
    padding-left: 5px;
  }

  /* Input error */
  .form-control.error {
    border: 2px solid #ff4d4f !important;
    background: #fff5f5;
  }

  .form-control.error {
    border: 2px solid #ff4d4f !important;
    animation: shake 0.2s;
  }

  @keyframes shake {
    0% {
      transform: translateX(0);
    }

    25% {
      transform: translateX(-3px);
    }

    50% {
      transform: translateX(3px);
    }

    75% {
      transform: translateX(-3px);
    }

    100% {
      transform: translateX(0);
    }
  }

  .group-error {
    border: 2px solid #ff4d4f;
    border-radius: 10px;
    padding: 10px;
    background: #fff5f5;
  }

  .group-error-text {
    color: #ff4d4f;
    font-size: 12px;
    margin-top: 5px;
  }

  /*New  sttle for color*/



  
  /* --- BLACK BACKGROUND & WHITE TEXT GLOBALLY --- */
 

  .mobile-container {
   max-width: 450px;
    width: 100%;
    min-height: 100vh;

    background: inherit; /* same as body */
    box-shadow: none;
    border: none;

    margin: 0 auto;
  }

  /* Override cards, modals, drawers, etc to dark theme */
  .card,
  
  .bottom-menu,
  .sticky-top-area,
  .service-item-full,
  .list-item,
  .category-circle,
  .salon-img,
  .search-box,
  .ui-autocomplete,
  .quantity-btn,
  .price-option,
  .menu-item,
  .category-item span,
  .search-tab,
  .category-chip
  {
    background-color: #111111 !important;
    color: #fff !important;
    border-color: #2c2c2c !important;
  }

  /* Ensure text inside cards / containers is white */
 .card,
.bottom-menu,
.sticky-top-area,
.service-item-full,
.list-item,
.drawer-nav-item,
.drawer-submenu-item,
.menu-item,
.category-item span,
.search-tab,
.category-chip {
    color: #f0f0f0;
}
.text-primary {
    color: #f0f0f0 !important;
}
  /* Special overrides for header & dark icons */
  .app-header h5,
  .app-header h5 span {
    color: white !important;
  }

  .app-header i {
    color: #ff741f !important;
  }

  .sticky-top-area {
    background: #000000 !important;
    border-bottom: 1px solid #2c2c2c !important;
  }

  .scrollable-content {
    background: inherit;
  }


  .drawer-header h5,
  .drawer-header p {
    color: white !important;
  }

  .drawer-nav-item {
    color: #dddddd !important;
    border-bottom: 1px solid #2c2c2c;
  }

  .drawer-nav-item:hover,
  .drawer-nav-item:active {
    background: #1f1f1f !important;
  }

  

  .drawer-submenu-item {
    color: #cccccc !important;
  }

  .drawer-submenu-item:hover {
    background: #2a2a2a !important;
    color: var(--primary) !important;
  }

  /* Bottom menu */
  .bottom-menu {
    background: #000000 !important;
    border-top: 1px solid #2c2c2c !important;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5) !important;
  }

  .menu-item {
    color: #aaaaaa !important;
  }

  .menu-item.active {
    color: var(--primary) !important;
    background: rgba(255, 116, 31, 0.15) !important;
  }

  .menu-item span {
    color: inherit !important;
  }

  /* Buttons & inputs */
  .btn-primary {
    background: var(--primary) !important;
    border: none !important;
    color: #ffffff !important;
    font-weight: 600;
  }

  .btn-primary:active {
    background: #e55a0e !important;
  }

  .form-control,
  .search-box {
    background: #1e1e1e !important;
    border: 1px solid #3a3a3a !important;
    color: white !important;
  }

  .form-control::placeholder {
    color: #aaa !important;
  }

  .form-check-input {
    background-color: #2c2c2c;
    border-color: #555;
  }

  .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
  }

  /* Category circles */
  .category-circle {
    background: #1a1a1a !important;
    border: 1px solid #333 !important;
    box-shadow: none;
  }

  .salon-img {
    background: #1a1a1a !important;
    border: 1px solid #333 !important;
  }

  .list-item {
    border-bottom: 1px solid #2a2a2a !important;
  }

  .badge.bg-secondary {
    background: #444 !important;
  }

  /* Carousel inner text */
  .carousel-item>div {
    color: white !important;
  }

  /* Search tabs / chips */
  .search-tab {
    background: #222 !important;
    color: #ddd !important;
  }

  .search-tab.active {
    background: var(--primary) !important;
    color: black !important;
  }

  .category-chip {
    background: #222 !important;
    color: #ddd !important;
  }

  .category-chip.active {
    background: var(--primary) !important;
    color: black !important;
  }

  /* price tag */
  .price-tag,
  .price-option .price {
    color: var(--primary) !important;
  }

  /* Quantity selector */
  .quantity-btn {
    background: #2c2c2c !important;
    color: white !important;
    border: none;
  }

  /* autocomplete dropdown */
  .ui-autocomplete {
    background: #1e1e1e !important;
    border: 1px solid #444 !important;
  }

  .ui-menu-item-wrapper {
    color: #f0f0f0 !important;
    border-bottom: 1px solid #333 !important;
  }

  .ui-state-active,
  .ui-menu-item-wrapper:hover {
    background: #2c2c2c !important;
    color: var(--primary) !important;
  }

  /* snackbar */
  #snackbar {
    color: white !important;
  }

  /* floating vendor button */
  .floating-vendor-btn {
    background: linear-gradient(135deg, var(--primary), var(--accent)) !important;
    color: black !important;
  }

  .floating-vendor-btn.minimized .btn-text {
    display: none;
  }

  /* links inside drawer, etc */
  a.text-decoration-none,
  a {
    color: #ffffff !important;
  }

  .drawer-submenu-item a {
    color: #cccccc !important;
  }

  .drawer-submenu-item a:hover {
    color: var(--primary) !important;
  }

  /* Scrollbar dark */
  .scrollable-content::-webkit-scrollbar {
    width: 4px;
  }

  .scrollable-content::-webkit-scrollbar-track {
    background: #111;
  }

  .scrollable-content::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 10px;
  }

  /* Error text fix */
  .error-text {
    color: #ff8a8a !important;
  }

  .group-error {
    background: #2a1a1a !important;
    border-color: #ff4d4f !important;
  }

  .menu-item {
    margin: 2px;
  }

  .category-circle {
    background: #fd731f !important;
    border: 1px solid #fd731f !important;
  }
  .custom-color{
        color: #fd731f !important;
  }


.see-all {
    cursor: pointer;
    transition: 0.3s ease;
}

.see-all i {
    transition: 0.3s ease;
}

.see-all:hover {
    opacity: 0.8;
}

.see-all:hover i {
    transform: translateX(4px);
}

.bg-light-custom {
    --bs-bg-opacity: 1;
    background-color:#fd731f !important;
        color: white !important;
}
.small-badge {
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 20px;
    background: rgba(255,255,255,0.1);
    color: #fff;
}

/* Base custom input */
.custom-check {
    position: relative;
    padding-left: 32px;
    cursor: pointer;
    font-size: 14px;
    user-select: none;
}

/* Hide default */
.custom-check input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Checkbox box */
.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 6px;
    transition: all 0.3s ease;
}

/* Hover effect */
.custom-check:hover input ~ .checkmark {
    border-color: #FF741F;
}

/* Checked */
.custom-check input:checked ~ .checkmark {
    background: #FF741F;
    border-color: #FF741F;
    box-shadow: 0 0 8px rgba(255, 116, 31, 0.5);
}

/* Tick */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show tick */
.custom-check input:checked ~ .checkmark:after {
    display: block;
}

/* Tick design */
.custom-check .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* RADIO STYLE */
.radio-mark {
    border-radius: 50%;
}

/* Radio inner dot */
.radio-mark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show dot */
.custom-check input:checked ~ .radio-mark:after {
    display: block;
}

/* Dot design */
.custom-check .radio-mark:after {
    top: 4px;
    left: 4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
}

/* Container */
/* Hide default radio */
.radio-modern-v3 input {
    display: none;
}

/* Outer circle */
.radio-modern-v3 .radio-ui {
    width: 22px;
    height: 22px;
    border: 2px solid #e5e5e5;
    border-radius: 50%;
    position: relative;
    transition: all 0.25s ease;
}

/* Inner dot */
.radio-modern-v3 .radio-ui::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: #FF741F;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: all 0.25s ease;
}

/* Checked state */
.radio-modern-v3 input:checked + .radio-ui {
    border-color: #FF741F;
    box-shadow: 0 0 8px rgba(255, 116, 31, 0.4);
    transform: scale(1.05);
}

/* Show inner dot */
.radio-modern-v3 input:checked + .radio-ui::after {
    transform: translate(-50%, -50%) scale(1);
}

/* Hover */
.radio-modern-v3:hover .radio-ui {
    border-color: #FF741F;
}

/* Text */
.radio-modern-v3 span {
    font-weight: 500;
}

.radio-modern-v3 .radio-ui::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255,116,31,0.15);
    border-radius: 50%;
    transform: scale(0);
    opacity: 0;
}

.radio-modern-v3 input:checked + .radio-ui::before {
    animation: ripple 0.4s ease;
}

@keyframes ripple {
    0% { transform: scale(0.5); opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
}

.radio-modern-v3 {
    display: inline-flex; /* ✅ change from flex → inline-flex */
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    margin-right: 20px; /* spacing between Yes/No */
}
 select,
 select option {
    color: #000!important;
}
.list-item {
    border-color: initial !important;
    border-left: 7px solid #f3630a !important;
    border-radius: 16px !important;
}
.bi-chevron-right,
.bi-star-fill,
.bi-star-half,
.icon-color,
.bi-chevron-up,
.bi-chevron-down,
.bi-arrow-left{
    color: #fff !important;
}
.carousel-indicators button.active {
    background-color: #fd731f !important;
    display: none;
}
.drawer-nav-item a{
    text-decoration: none;
}
.custom-span{
        margin-left: 20px;
}
/* Remove default icon */
/* .carousel-control-prev-icon,
.carousel-control-next-icon {
    background-image: none !important;
} */

.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: none !important;
}

/* Custom arrows */
/* .carousel-control-prev::after {
    content: '❮';
        font-size: 27px;
    color: #fff;
    opacity: 1 !important;
}

.carousel-control-next::after {
    content: '❯';
       font-size: 27px;
    color: #fff;
    opacity: 1 !important;
} */
.carousel-control-next, .carousel-control-prev {
  opacity : 1!important;
}

.carousel-control-prev::after,
.carousel-control-next::after {
    font-size: 22px;
    font-weight: 300;
    color: #fff;
}
.notification-icon span{
        background-color: #fd731f !important;
    color: #ffffff !important;
}

.text-orange {
    color: #fd731f;
}
.drawer-submenu-item.active a{
   color: #fd731f !important;
}

/* Pagination */
.pagination {
    justify-content: center;
}

.pagination .page-link {
    background: var(--card-bg);
    border: 1px solid var(--border);
    color: var(--text-muted);
}

.pagination .active .page-link {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.page-link:hover {
    background-color: var(--primary);
     border-color:  var(--primary);
  }

  .page-link:focus {
    background-color:var(--primary);
     border-color:  var(--primary);
  }
.pagination-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

.pagination {
    flex-wrap: nowrap !important;
    width: max-content;
    gap: 6px;
}

.pagination li {
    flex: 0 0 auto;
}

.pagination-scroll::-webkit-scrollbar {
    display: none;
}
.pagination .disabled .page-link {
    background: transparent;
    color: #888;
    border: none;
}

/*For confirmation popup*/
.confirm-modal {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: flex-end;
    z-index: 9999;
}

.confirm-modal.show {
    display: flex;
}

.confirm-box {
    background: #1a1a1a;
    width: 100%;
    padding: 20px;
    border-radius: 16px 16px 0 0;
    animation: slideUp 0.3s ease;
}

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

.confirm-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.confirm-text {
    font-size: 13px;
    color: #aaa;
    margin-top: 5px;
}

.confirm-actions {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.btn-cancel-light {
    flex: 1;
    background: #2a2a2a;
    border: none;
    padding: 12px;
    border-radius: 10px;
    color: #fff;
}

.btn-confirm {
    flex: 1;
    background: #ff4d4f;
    border: none;
    padding: 12px;
    border-radius: 10px;
    color: #fff;
}
.spin {
    animation: spin 1s linear infinite;
}

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

.custom-modal-box {
    transform: scale(0.9);
    animation: popup 0.2s ease forwards;
}
.custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.custom-modal.show {
    display: flex;
}

.custom-modal-box {
    background: #1A1A1A;
    padding: 20px;
    border-radius: 16px;
    width: 90%;
    max-width: 350px;
    color: #fff;
}

.spin {
    animation: spin 1s linear infinite;
}
@keyframes spin {
    100% { transform: rotate(360deg); }
}
@keyframes popup {
    to { transform: scale(1); }
}

/* ===== MODERN DARK LOADER ===== */
.ajax-loader {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.ajax-loader.active {
  display: flex;
}

/* box */
.ajax-loader-box {
  background: #1e1e1e;
  padding: 24px 30px;
  border-radius: 20px;
  text-align: center;
  min-width: 180px;
  border: 1px solid #2a2a2a;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

/* spinner */
.ajax-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #2a2a2a;
  border-top: 4px solid #FF741F;
  border-right: 4px solid #FF9A3E;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 14px;
  box-shadow: 0 0 12px rgba(255,116,31,0.4);
}

/* text */
.ajax-loader-text {
  font-size: 13px;
  font-weight: 500;
  color: #ccc;
  letter-spacing: 0.4px;
}

/* animation */
@keyframes spin {
  100% {
      transform: rotate(360deg);
  }
}

.section-card {
    background: #1A1A1A;
    border: 1px solid #2A2A2A;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 10px;
}

.value {
    color: #fff;
    font-weight: 500;
}

.btn-main {
    background: #FF741F;
    color: #fff;
    border-radius: 10px;
}

.spin {
    animation: spin 1s linear infinite;
}
@keyframes spin {
    100% { transform: rotate(360deg); }
}
.btn-outline-primary {
    --bs-btn-color: #fd731f;
    --bs-btn-border-color: #fd731f;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #fd731f;
    --bs-btn-hover-border-color: #fd731f;
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #fd731f;
    --bs-btn-active-border-color: #fd731f;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fd731f;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #fd731f;
    --bs-gradient: none;
}
.list-group {
    --bs-list-group-color: var(--bs-body-color);
    --bs-list-group-bg: #fd731f;
}
.ios-switch input:checked + .ios-slider {
    background-color: #fd731f;
}
.ios-switch input:checked + .ios-slider:before {
    transform: translateX(20px);
}
 .category-item {
    text-align: center;
    text-decoration: none;
    color: #fff;
}

/* Circle container */
.category-circles {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    overflow: hidden;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fd731f;
    border: 1px solid #fd731f;
}

/* CLEAN CROP */
.category-circles img {
    width: 60%;
}

/* Hover */
.category-item:hover .category-circles {
    transform: scale(1.1);
    transition: 0.3s;
}

.text-muted {
    color: rgb(200 215 231 / 75%) !important;
}
.bg-primary {
    background-color: rgb(92 97 104) !important;
}
.bg-success {

    background-color: #fd731f !important;
}
input::placeholder {
    color: #d0cbcb;
}
/*New dailyneed css*/
.category-card-modern {
    background: linear-gradient(135deg, #1E1E1E 0%, #252525 100%);
    border-radius: 28px;
    padding: 18px 12px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 116, 31, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    min-height: 160px;
    line-height: 1.1;
}

.category-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 5px;
    transition: 0.3s;
}
/*.all_food_img_s{
  width: 100%;
    border-radius: 15px;
}*/

.all_food_img_s{
    width: 100%;
    border-radius: 15px;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
}
.category-card-modern span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
}
.category-card-modern i {
    font-size: 32px;
    color: #ff741f;
}

.store-cards, .product-card {
    background: #1e1e1e;
    border-radius: 24px;
    padding: 14px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.rating-stars {
    color: #ff9a3e;
    font-size: 13px;
}

.btn-outline-custom {
    background: transparent;
    border: 1px solid #ff741f;
    color: #ff741f;
    border-radius: 44px;
}

input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(48%) sepia(93%) saturate(749%) hue-rotate(350deg) brightness(100%) contrast(101%);
}
input[type="time"] {
    accent-color: #FF741F;
}

.store-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.store-card{
    margin:0;
    cursor:pointer;
}

.store-card input{
    display:none;
}

.store-card-inner{
    position:relative;
    background:linear-gradient(145deg,#1f1f23,#111114);
    border:1px solid rgba(255,115,0,0.25);
    border-radius:32px;

    height:165px;

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

    transition:all .3s ease;

    overflow:hidden;
}

.store-card-inner:hover{
    transform:translateY(-4px);
    border-color:#ff6b00;
    box-shadow:
        0 10px 30px rgba(255,107,0,0.15);
}

.store-icon-wrap{
    width:70px;
    height:70px;
    border-radius:50%;
    background:rgba(255,107,0,0.12);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:10px;
    transition:.3s ease;
}

.store-icon{
    width:38px;
    height:38px;
    object-fit:contain;
}

.store-icon-default{
    color:#ff6b00;
    font-size:20px;
}

.store-card-inner h6{
    color:#fff;
    font-size:18px;
    font-weight:400;
    margin:0;
    text-align:center;
}

.selected-check{
    position:absolute;
    top:14px;
    right:14px;

    width:26px;
    height:26px;

    border-radius:50%;

    background:#ff6b00;
    color:#fff;

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

    opacity:0;
    transform:scale(.5);

    transition:.25s ease;
}

/* SELECTED */

.store-card input:checked + .store-card-inner{
    border:2px solid #ff6b00;

    background:
        linear-gradient(
            145deg,
            #2a211c,
            #151515
        );

    box-shadow:
        0 0 0 2px rgba(255,107,0,0.15),
        0 12px 30px rgba(255,107,0,0.2);
}

.store-card input:checked + .store-card-inner .store-icon-wrap{
    background:rgba(255,107,0,0.22);
    transform:scale(1.06);
}

.store-card input:checked + .store-card-inner .selected-check{
    opacity:1;
    transform:scale(1);
}

/* MOBILE */

@media(max-width:768px){

    .store-grid{
        grid-template-columns:repeat(2,1fr);
        gap:14px;
    }

    .store-card-inner{
        height:128px;
        border-radius:26px;
    }


    .store-icon{
        width:30px;
        height:30px;
    }

    .store-card-inner h6{
        font-size:16px;
    }
}

.text-decoration {
    text-decoration: none;
}


/*Cart animation*/
.cart-shake{
    animation: cartShake .7s;
}

@keyframes cartShake{

    0%{transform:scale(1);}
    20%{transform:scale(1.35) rotate(-15deg);}
    40%{transform:scale(1.15) rotate(15deg);}
    60%{transform:scale(1.30) rotate(-10deg);}
    80%{transform:scale(1.15);}
    100%{transform:scale(1);}
}

.badge-pop{
    animation: badgePop .5s;
}

@keyframes badgePop{

    0%{
        transform:scale(0);
    }

    60%{
        transform:scale(1.5);
    }

    100%{
        transform:scale(1);
    }
}

#notificationBtn{
    position:relative;
}

.cart-success{

    animation:cartSuccess 0.9s ease;

}

@keyframes cartSuccess{

    0%{
        transform:scale(1);
    }

    20%{
        transform:scale(1.35) rotate(-12deg);
    }

    40%{
        transform:scale(.95);
    }

    60%{
        transform:scale(1.25);
    }

    100%{
        transform:scale(1);
    }

}

.cart-ripple::after{

    content:"";

    position:absolute;

    inset:-10px;

    border:3px solid #FF741F;

    border-radius:50%;

    animation:ripple .8s ease-out;

}

@keyframes ripple{

    from{

        opacity:.8;

        transform:scale(.4);

    }

    to{

        opacity:0;

        transform:scale(1.8);

    }

}

.badge-pop{

    animation:badgePop .6s;

}

@keyframes badgePop{

    0%{
        transform:scale(0);
    }

    60%{
        transform:scale(1.7);
    }

    100%{
        transform:scale(1);
    }

}

.cart-plus{

    position:absolute;

    right:-8px;

    top:-10px;

    color:#22c55e;

    font-size:15px;

    font-weight:bold;

    animation:plusFly .9s forwards;

    pointer-events:none;

}

@keyframes plusFly{

    from{

        opacity:1;
        transform:translateY(0);

    }

    to{

        opacity:0;
        transform:translateY(-25px);

    }

}

/*custom alert*/

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

#toastContainer{
    position:fixed;
    top:70px;          /* below your header */
    left:12px;
    right:12px;
    width:auto;
    max-width:420px;
    margin:auto;
    z-index:9999;
}
.app-toast{

    position:relative;
    display:flex;
    align-items:center;
    gap:14px;

    background:#171717;
    color:#fff;

    border-radius:16px;
    overflow:hidden;

    padding:16px 18px;

    border:1px solid rgba(255,255,255,.05);

    box-shadow:
        0 12px 30px rgba(0,0,0,.45);

    margin-bottom:12px;

    pointer-events:auto;

    animation:toastSlide .35s ease;

}

/*==============================
    ICON
==============================*/

.app-toast i:first-child{

    font-size:22px;
    flex-shrink:0;

}

/*==============================
    MESSAGE
==============================*/

.app-toast .message{

    flex:1;

    font-size:15px;
    font-weight:600;

    color:#fff;

    line-height:1.4;

}

/*==============================
    CLOSE
==============================*/

.app-toast .close{

    cursor:pointer;

    color:#9ca3af;

    font-size:18px;

    transition:.25s;

}

.app-toast .close:hover{

    color:#fff;

    transform:rotate(90deg);

}

/*==============================
    LEFT BORDER COLORS
==============================*/

.app-toast.success{

    border-left:5px solid #22c55e;

}

.app-toast.success i:first-child{

    color:#22c55e;

}

.app-toast.error{

    border-left:5px solid #ef4444;

}

.app-toast.error i:first-child{

    color:#ef4444;

}

.app-toast.warning{

    border-left:5px solid #FF741F;

}

.app-toast.danger {
    border-left: 5px solid #FF741F;
}

.app-toast.warning i:first-child{

    color:#FF741F;

}
.app-toast.danger i:first-child{

    color:#FF741F;

}

.app-toast.info{

    border-left:5px solid #3b82f6;

}

.app-toast.info i:first-child{

    color:#3b82f6;

}

/*==============================
    PROGRESS BAR
==============================*/

.toast-progress{

    position:absolute;

    bottom:0;
    left:0;

    width:100%;
    height:3px;

    background:linear-gradient(
        90deg,
        #FF741F,
        #FFA34D
    );

    animation:toastProgress 3.5s linear forwards;

}

/* Different progress colors */

.app-toast.success .toast-progress{

    background:#22c55e;

}

.app-toast.error .toast-progress{

    background:#ef4444;

}

.app-toast.info .toast-progress{

    background:#3b82f6;

}

/*==============================
    HOVER
==============================*/

.app-toast:hover{

    transform:translateY(-2px);

    box-shadow:
        0 18px 40px rgba(0,0,0,.55);

}

/*==============================
    ANIMATIONS
==============================*/

@keyframes toastSlide{

    from{

        opacity:0;

        transform:
            translateY(-35px)
            scale(.95);

    }

    to{

        opacity:1;

        transform:
            translateY(0)
            scale(1);

    }

}

@keyframes toastHide{

    from{

        opacity:1;

        transform:
            translateY(0);

    }

    to{

        opacity:0;

        transform:
            translateY(-30px);

    }

}

@keyframes toastProgress{

    from{

        width:100%;

    }

    to{

        width:0;

    }

}

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

@media(max-width:576px){

    #toastContainer{

        top:58px;

        width:calc(100% - 16px);

    }

    .app-toast{

        padding:15px;

        border-radius:14px;

    }

    .app-toast .message{

        font-size:14px;

    }

}

/*Cart empty*/
.empty-cart{
    padding:60px 20px;
}

.empty-cart-icon{

    width:100px;
    height:100px;

    margin:auto;

    border-radius:50%;

    background:linear-gradient(135deg,#FF741F,#FFA14A);

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

    box-shadow:0 15px 35px rgba(255,116,31,.25);

    margin-bottom:25px;

}

.empty-cart-icon i{

    font-size:48px;
    color:#fff;

}

.empty-cart h4{

    color:#fff;

}

.empty-cart p{

    color:#9ca3af !important;
    max-width:320px;
    margin:auto;

}

.empty-cart .btn{

    min-width:220px;
    height:52px;

    font-size:16px;
    font-weight:600;

    border-radius:30px;

    margin-top:10px;

}

/* ==========================
   Modern Bottom Navigation
========================== */
