@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=BBH+Sans+Hegarty&family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@100..900&amp;display=swap');

/* ----------------------------------------------------
   Form Elements
---------------------------------------------------- */
/* input[type="password"],
input[type="email"],
input[type="text"],
input[type="file"],
input[type="num"],
input[type="submit"],
textarea,
select,
button {
  font-family: 'Figtree', sans-serif !important;
  font-weight: normal !important;
  text-transform: none !important;
  letter-spacing: 0px !important;
}

body, p, span, li, a,
h1, h2, h3, h4, h5, h6, label {
  font-family: 'Figtree', sans-serif !important;
}

.numbers {
  font-family: 'LINE Seed JP', sans-serif !important;
}

textarea {
  border-radius: 0 !important;
}

input[type="submmit"] {
  border-radius: 0 !important;
} */

/* body { background-color: #020617 !important; } */

/* Buttons */
.dark-bg { background-color: #020617 !important; }
.dark-bg h6, .dark-bg span { color: #f1f5f9 !important; }
.dark-bg .sales { color: #a9eecb !important; }
.dark-bg .green { color: #a9eecb !important; }
.dark-bg .red { color: #ef4444 !important; }
.bg-blue-600 { background-color: #2b5fd2 !important; font-weight: 600; }
.bg-blue-600:hover { background-color: #333 !important }
.orange-btn { background-color: #eb7f11 !important; font-weight: 600 }
.orange-btn:hover { background-color: #333 !important }
/* Buttons */
input,

.btn-transparent {
  background: transparent;
  color: #fff;
  padding: 8px 10px;
  /* margin: 15px 0px 20px 20px; */
  /* top right bottom left */
  position: relative;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 5px;
  cursor: pointer;
  z-index: 999;
}

.checkbox {
    border-radius: 50px !important;
}
.rounded-checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 1.25rem;
  height: 1.25rem;
  border: 3px solid #cbd5e1; /* slate-300 */
  border-radius: 9999px !important; /* 👈 makes it round */
  background-color: #fff;
  cursor: pointer;
  position: relative;
}

.rounded-checkbox:checked {
  background-color: #2563eb; /* blue-600 */
  border-color: #2563eb;
}

.rounded-checkbox:checked::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: #fff;
  border-radius: 9999px !important;
}

/* ----------------------------------------------------
  Text Appearance & Sizing
---------------------------------------------------- */
.text-brown { color: #9f7b47 !important; }
.text-gold { color: #c8a97e !important; }
.text-white { color: #fff !important; }
.text-sm { font-size: 13px; line-height: 1.2em !important; }
.fw-bold { font-weight: 600; }
.uppercase { text-transform: uppercase; }

.txt-review:hover {
color: #FF9222 !important;
}

.txt-grey {
  color: #888 !important;
}

.rev-row:hover {
  background: #dbeafe;
}

.remove:hover {
  color: #ef4444;
}

.old-price {
  /* color: #dedede !important; */
  text-decoration: line-through !important;
}

.select-wrapper {
    width: 160px !important;
}

.txt-red {
  color: #ff0000;
  font-weight: 550;
}

.txt-green {
  color: #51cea2;
  font-weight: 550;
}

.txt-orange {
  color: #ff9223 !important;
  font-weight: 550;
}

.txt-yellow {
  color: #F5C332 !important;
  font-weight: 550;
}

.txt-white {
  color: #fff !important;
}

.txt-dark {
  color: #111;
  font-weight: 550;
}

.muted {
  color: #888;
  opacity: .7;
}

/* ----------------------------------------------------
  UI/UX
---------------------------------------------------- */
.hidden {
    display: none;
}

.ph-social ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.ph-social {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    width: 98%;
}

/* .home-btn {
  width: 150px !important;
} */

/* ----------------------------------------------------
   Toast
---------------------------------------------------- */
#toast-container {
  position: fixed;
  top: 30px;             /* distance from bottom */
  left: 50%;                /* center horizontally */
  transform: translateX(-50%);  /* perfect left-right centering */
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 80%;
  padding: 20px;
  font-size: 16px !important;
  text-align: center;

  animation: toastIn 0.45s cubic-bezier(.21,1.02,.73,1),
             toastOut 0.35s ease-in forwards;
  animation-delay: 0s, 3s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px); /* slide UP from below */
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(10px); /* slide DOWN */
  }
}

/* ----------------------------------------------------
   Badges / Utilities
---------------------------------------------------- */
.d-badge {
  display: inline-block;
  background: #51cea2;
  color: #fff !important;
  padding: 3px 6px 3px 6px;
  margin-right: 3px;
  font-size: 11px;
  font-weight: 550;
  border-radius: 5px;
  text-align: center;
}

.badge-green {
  display: inline-block;
  background: #22c189;
  color: hsl(0, 0%, 100%) !important;
  padding: 3px 10px 4px 10px;
  font-size: 11px;
  font-weight: 550;
  border-radius: 5px;
  text-align: center;
}

.badge-gray {
  display: inline-block;
  background: #f1f1f1;
  color: #444;
  padding: 3px 10px 4px 10px;
  font-size: 11px;
  font-weight: 550;
  border-radius: 5px;
  text-align: center;
}

.badge-orange {
  display: inline-block;
  background: #eb7f11;
  color: hsl(0, 0%, 100%) !important;
  padding: 3px 10px 4px 10px;
  font-size: 11px;
  font-weight: 550;
  border-radius: 5px;
  text-align: center;
}

.badge-red {
  display: inline-block;
  background: #dc2626;
  color: #fff !important;
  padding: 3px 10px 4px 10px;
  font-size: 11px;
  font-weight: 550;
  border-radius: 5px;
  text-align: center;
}

.badge-dark {
  display: inline-block;
  background: #666;
  color: #fff !important;
  padding: 4px 10px 4px 10px;
  font-size: 11px;
  font-weight: 550;
  border-radius: 5px;
  text-align: center;
}

.bg-red {
color: #fff;
padding: 7px;
background-color: #e62c2c;
border-radius: 5px;
}

.white-icon {
  background: transparent;
  color: #fff;
  font-size: 0.7em;
  border: 1px solid rgba(255,255,255,0.5);
  padding: 8px 10px 8px 10px;  /* top right bottom left */
  align-items: center;
  border-radius: 50px;
  cursor: pointer;
  z-index: 999;
  margin-top: 5px;
}

/* ----------------------------------------------------
  Images
---------------------------------------------------- */
.tt-shs-item-image {
    height: 350px;
    overflow: hidden;
    position: relative;
}

.tt-shs-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tt-posl-image-wrap,
.details-img {
    position: relative;
    overflow: hidden;
}

.tt-posl-image-wrap::after,
.details-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.tt-posl-image-wrap img,
.details-img img {
    display: block;
    width: 100%;
}

.avatar {
  padding: 3px;
  border: 1px solid #bababa;
  border-radius: 50%;
}

.circle-img {
  padding: 2px;
  border-radius: 10px;
  border: 1px solid  rgba(0, 0, 0, .2);
}

/* hr {
  border: none;
  height: 0px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(0,0,0,.2),
    transparent
  );
  margin: 12px 0;
} */

.photo-select {
  cursor: pointer;
  margin: -10px 0 0 -10px;
}

.fileUpload {
  position: relative;
  /* overflow: hidden; */
  margin: 10px;
}

.fileUpload input {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
  opacity: 0;
  filter: alpha(opacity=0);
}

#upload-demo {
  background: #f1f1f1;
  /* display: none; */
}

/* Background image button */
#change-bg::file-selector-button {
/* Basic styling */
    background-color: #ff9222;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;

/* Hover effect */
    transition: background-color 0.3s ease;
}

#change-bg::file-selector-button:hover {
    background-color: #ff9222;
}

.change-bg {
    display: inline-block;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.change-bg:hover {
    background-color: #ff9222;
    color: #fff;
}
/* Background image button */

/* Logo button */
#change-logo::file-selector-button {
    background-color: #ff9222;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;

    /* Hover effect */
    transition: background-color 0.3s ease;
}

#change-logo::file-selector-button:hover {
    background-color: #ff9222;
}

.change-logo {
    display: inline-block;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: 1px solid #ddd;
}

.change-logo:hover {
    background-color: #ff9222;
    color: #fff;
    border: 1px solid #ff9222;
}
/* Logo button */

.qr-code {
    width: 55%;
}

/* ----------------------------------------------------
  Datepicker
---------------------------------------------------- */
/* ----------------------------------------------------
   Dark Datepicker Theme
---------------------------------------------------- */
.ui-datepicker {
    background: #111 !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 14px !important;
    padding: 12px !important;
    /* width: 320px !important; */
    z-index: 99999 !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.45);
}

.ui-datepicker-header {
    background: transparent !important;
    border: none !important;
    color: #fff !important;
    padding: 10px 0 !important;
}

.ui-datepicker-title {
    color: #fff !important;
    font-size: 15px;
    font-weight: 600;
}

.ui-datepicker-prev,
.ui-datepicker-next {
    border: none !important;
    background: transparent !important;
    cursor: pointer;
    top: 10px !important;
}

.ui-datepicker-prev:hover,
.ui-datepicker-next:hover {
    opacity: 0.7;
}

.ui-datepicker-calendar {
    margin-top: 10px !important;
}

.ui-datepicker-calendar th {
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    font-weight: 500;
    padding-bottom: 10px;
}

.ui-datepicker-calendar td {
    padding: 2px;
}

.ui-datepicker-calendar td a {
    background: transparent !important;
    border: none !important;
    color: #fff !important;
    text-align: center;
    border-radius: 10px;
    padding: 10px 0 !important;
    transition: all 0.2s ease;
}

.ui-datepicker-calendar td a:hover {
    background: rgba(255,255,255,0.08) !important;
}

.ui-datepicker-current-day a {
    background: #c8a97e !important;
    color: #111 !important;
    font-weight: 600;
}

.ui-state-disabled span {
    opacity: 0.2;
}

.ui-datepicker-buttonpane {
    border-top: 1px solid rgba(255,255,255,0.08) !important;
    margin-top: 10px;
    padding-top: 10px;
    background: transparent !important;
}

.ui-datepicker-buttonpane button {
    background: #c8a97e !important;
    border: none !important;
    color: #111 !important;
    border-radius: 8px;
    padding: 6px 14px;
    cursor: pointer;
    font-weight: 600;
}

/* ----------------------------------------------------
   Override JS Select
---------------------------------------------------- */
.choices__input,
.choices__inner {
  text-transform: none !important;
}

.choices__inner {
  background: white !important;
  border: 1px solid #e2e8f0 !important; /* slate-200 */
  border-radius: 6px !important;
  min-height: 38px !important;
  /* padding: 6px 10px !important; */
}

.filter .choices__inner {
  background: white !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 6px !important;

  height: 38px !important;        /* lock height */
  min-height: unset !important;   /* remove conflict */

  padding: 0 10px !important;     /* remove vertical padding */
  display: flex;
  align-items: center;            /* vertical centering */
  width: 175px !important;
}

.dark .choices__inner {
  background: #020617 !important; /* slate-950 */
  border-color: #1e293b !important; /* slate-800 */
  color: #e2e8f0 !important;
}

.choices__list--dropdown {
  border-radius: 6px !important;
  border: 1px solid #e2e8f0 !important;
}

.choices__item--selectable {
  font-size: 14px;
}

.choices__item--highlighted {
  background-color: #f1f5f9 !important; /* slate-100 */
  color: #0f172a !important;
}

/* ----------------------------------------------------
  UI/UX
---------------------------------------------------- */
.gravity-ui--circle-xmark {
/* display: inline-block; */
width: 25px;
height: 25px;
--svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M13.5 8a5.5 5.5 0 1 1-11 0a5.5 5.5 0 0 1 11 0M15 8A7 7 0 1 1 1 8a7 7 0 0 1 14 0M6.53 5.47a.75.75 0 0 0-1.06 1.06L6.94 8L5.47 9.47a.75.75 0 1 0 1.06 1.06L8 9.06l1.47 1.47a.75.75 0 1 0 1.06-1.06L9.06 8l1.47-1.47a.75.75 0 1 0-1.06-1.06L8 6.94z' clip-rule='evenodd'/%3E%3C/svg%3E");
background-color: currentColor;
-webkit-mask-image: var(--svg);
mask-image: var(--svg);
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
-webkit-mask-size: 100% 100%;
mask-size: 100% 100%;
color: #fff;
margin-top: 5px 5px 0 0;
}

.gravity-ui--pencil-to-line {
/* display: inline-block; */
width: 25px;
height: 25px;
--svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M12.238 3.64a1.854 1.854 0 0 0-1.629-1.628l-.8.8a3.37 3.37 0 0 1 1.63 1.628zM4.74 7.88l3.87-3.868a1.854 1.854 0 0 1 1.628 1.629L6.369 9.51a1.5 1.5 0 0 1-.814.418l-1.48.247l.247-1.48a1.5 1.5 0 0 1 .418-.814M9.72.78l-2 2l-4.04 4.04a3 3 0 0 0-.838 1.628L2.48 10.62a1 1 0 0 0 1.151 1.15l2.17-.36a3 3 0 0 0 1.629-.839l4.04-4.04l2-2c.18-.18.28-.423.28-.677A3.353 3.353 0 0 0 10.397.5c-.254 0-.498.1-.678.28M2.75 13a.75.75 0 0 0 0 1.5h10.5a.75.75 0 0 0 0-1.5z' clip-rule='evenodd'/%3E%3C/svg%3E");
background-color: currentColor;
-webkit-mask-image: var(--svg);
mask-image: var(--svg);
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
-webkit-mask-size: 100% 100%;
mask-size: 100% 100%;
color: #fff;
}

#recipePanel table th,
#recipePanel table td,
#sales-report table th,
#sales-report table td,
#customers-table table th,
#customers-table table td,
th, td {
    text-align: left !important;
}

#subscriptions, #role-admin, #role-manager, #role-staff {
    display: none;
}

.js-select {
  width: 100% !important;
}

.pop-up {
  /* display: none; */
  margin: 0;
  z-index: 99999;
  /* background: #000; */
  opacity: 0.95;
  width: 50%;
  margin: auto;
}

.popup-bg-2 {
  background: #000;
  opacity: 0.95;
  width: 100%;
  height: 100%;
  margin: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.error { color: #ef4444; }
/* button {
background: #FF9222 !important;
} */

.overlay {
    position: fixed; /* Position fixed to cover the entire viewport */
    padding: 30px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Dark, semi-transparent background */
    display: flex; /* Use flexbox for centering */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    z-index: 9999; /* Ensure overlay is on top of other content */
}

.centered-content {
    background-color: white; /* Background for your centered div */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* text-align: center; */
    /*  max-width: 80%; /* Limit width for responsiveness */
    /* max-height: 80%; /* Limit height for responsiveness */
    overflow: auto; /* Add scroll if content exceeds max height */
}

/* --- End Custom --- */

/* ----------------------------------------------------
  Mobile
---------------------------------------------------- */

@media (max-width: 767px) {
.pop-up {
    width: 100%;
}
.qr-code {
    width: 100%;
}
}