
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
 :root {
    --primary: #fd731f;
    --secondary: #ffffff;
    --accent: #FF9A3E;
    --dark: #ffffff;
  }
  
:root {
    --primary: #fd731f;
    --primary-light: #FF9A3E;
    --bg-dark: #121212;
    --card-bg: #1A1A1A;
    --border: #2A2A2A;
    --text-main: #FFFFFF;
    --text-muted: #AAAAAA;
    --success: #28a745;
    --danger: #ff4d4f;
}
  body {
    background: #f5f7fb;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 0;
  }

  .mobile-container {
    max-width: 450px;
    width: 100%;
    height: 100vh;
    background: white;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  }

  /* Drawer Menu */
  .drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .drawer-overlay.active {
    display: block;
    opacity: 1;
  }

  .drawer-menu {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    background: white;
    z-index: 2001;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: 2px 0 12px rgba(0, 0, 0, 0.1);
  }

  .drawer-menu.open {
    left: 0;
  }

  .drawer-header {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    padding: 24px 16px;
    color: white;
  }

  .drawer-nav {
    padding: 8px 0;
  }

  .drawer-nav-item {
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    transition: background 0.2s;
    color: #2c3e50;
    border-left: 3px solid transparent;
  }

  .drawer-nav-item:hover,
  .drawer-nav-item:active {
    background: #f8f9fa;
  }

  .drawer-nav-item i {
    font-size: 1.2rem;
    width: 24px;
  }

  /* 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;
  }

  /* Drawer Menu Styles */
  .drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .drawer-overlay.active {
    display: block;
    opacity: 1;
  }

  .drawer-menu {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    background: white;
    z-index: 2001;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: 2px 0 12px rgba(0, 0, 0, 0.1);
  }

  .drawer-menu.open {
    left: 0;
  }


  .drawer-header h5 {
    margin: 0;
    font-weight: 600;
  }

  .drawer-header p {
    margin: 8px 0 0;
    font-size: 0.8rem;
    opacity: 0.9;
  }

  .drawer-nav {
    padding: 8px 0;
  }

  .drawer-nav-item {
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    transition: background 0.2s;
    color: #2c3e50;
    border-left: 3px solid transparent;
  }

  .drawer-nav-item:hover,
  .drawer-nav-item:active {
    background: #f8f9fa;
  }

  .drawer-nav-item.active {
    background: rgba(255, 116, 31, 0.1);
    border-left-color: var(--primary);
    color: var(--primary) !important;
  }

  .drawer-nav-item i {
    font-size: 1.2rem;
    width: 24px;
  }

  .drawer-nav-item span {
    font-size: 0.9rem;
    font-weight: 500;
  }

  .drawer-submenu {
    padding-left: 48px;
    background: #fafafa;
    display: none;
  }

  .drawer-submenu.show {
    display: block;
  }

  .drawer-submenu-item {
    padding: 12px 16px;
    cursor: pointer;
    font-size: 0.85rem;
    color: #555;
    transition: background 0.2s;
  }

  .drawer-submenu-item:hover,
  .drawer-submenu-item:active {
    background: #f0f0f0;
    color: var(--primary);
  }

  .drawer-divider {
    height: 1px;
    background: #e5e5e5;
    margin: 8px 0;
  }

  .floating-vendor-btn {
    position: fixed;
    bottom: 172px;
    /* adjust based on bottom menu */
    right: 0;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-radius: 50px 0 0 50px;
    padding: 10px 12px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 116, 31, 0.4);
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
  }

  /* MINIMIZED STATE */
  .floating-vendor-btn.minimized {
    padding: 10px;
    width: 45px;
    justify-content: center;
  }

  /* Hide text when minimized */
  .floating-vendor-btn.minimized .btn-text {
    display: 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: #a00606;
    margin-top: 4px;
    padding-left: 5px;
  }

  /* Input error */
  .form-control.error {
    border: 1px solid #fd731f !important;
    background: #fff5f5;
    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: 1px solid #ff4d4f;
    border-radius: 10px;
    padding: 10px;
    background: #191919 !important;
    border-color: #fd731f !important;
  }

  .group-error-text {
    color: #ff4d4f;
    font-size: 12px;
    margin-top: 5px;
  }

  /*New  sttle for color*/



  :root {
    --primary: #fd731f;
    --secondary: #ffffff;
    --accent: #FF9A3E;
    --dark: #ffffff;
  }

  /* --- BLACK BACKGROUND & WHITE TEXT GLOBALLY --- */
  body {
    background: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    color: #ffffff;
  }

  .mobile-container {
    max-width: 450px;
    width: 100%;
    height: 100vh;
    background: #000000;
    /* pure black */
    overflow: hidden;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    color: #ffffff;
  }

  /* Override cards, modals, drawers, etc to dark theme */
  .card,
  
  .drawer-menu,
  .bottom-menu,
  .sticky-top-area,
  .service-item-full,
  .list-item,
  .category-circle,
  .salon-img,
  .search-box,
  .ui-autocomplete,
  .quantity-btn,
  .price-option,
  .drawer-nav-item,
  .drawer-submenu-item,
  .drawer-submenu,
  .menu-item,
  .category-item span,
  .search-tab,
  .category-chip
  {
    background-color: #111111 !important;
    color: #ffffff !important;
    border-color: #2c2c2c !important;
  }

  /* Ensure text inside cards / containers is white */
 .card,
.drawer-menu,
.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: white !important;
  }

  .sticky-top-area {
    background: #000000 !important;
    border-bottom: 1px solid #2c2c2c !important;
  }

  .scrollable-content {
    background: #000000;
  }

  /* Drawer Menu background & text */
  .drawer-menu {
    background: #111111 !important;
  }

  .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;
  }



  .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: #ff741f !important;
}
.carousel-indicators button.active {
    background-color: #fd731f !important;
}
.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;
}

/* Custom arrows */
.carousel-control-prev::after {
    content: '❮';
        font-size: 27px;
    color: #fd731f;
    opacity: 1 !important;
}

.carousel-control-next::after {
    content: '❯';
       font-size: 27px;
    color: #fd731f;
    opacity: 1 !important;
}
.carousel-control-next, .carousel-control-prev {
  opacity : 1!important;
}

.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;
}
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;
}
