@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Mozilla+Headline:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');

/* ----------------------------------------------------
   Figtree
---------------------------------------------------- */
@font-face {
    font-family: 'Figtree Medium';
    src: url('../fonts/Figtree-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Figtree';
    src: url('../fonts/Figtree-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Figtree Bold';
    src: url('../fonts/Figtree-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* ----------------------------------------------------
   DM Sans
---------------------------------------------------- */
@font-face {
    font-family: 'DM Sans Medium';
    src: url('..fonts/DMSans-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans Bold';
    src: url('../fonts/DMSans-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DMSans-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ----------------------------------------------------
   LINE Seed JP
---------------------------------------------------- */
@font-face {
    font-family: 'LINE Seed JP Thin';
    src: url('../fonts/LINESeedJP-Thin.woff2') format('woff2');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'LINE Seed JP';
    src: url('../fonts/LINESeedJP-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'LINE Seed JP Bold';
    src: url('../fonts/LINESeedJP-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'LINE Seed JP ExtraBold';
    src: url('../fonts/LINESeedJP-ExtraBold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* ----------------------------------------------------
   Root
---------------------------------------------------- */
:root {
  --page-bg: #eef2f5;
  --gray-bg: #f4f5f7 !important;
  --dark: #000 !important;
  --dark-gray: #333 !important;
  --lighter-gray: #999 !important;
  --light-gray: #666 !important;
  --white: #fff !important;
  --gray: #666 !important;
  --text: #0f1720 !important;
  --text-dark: #222 !important;
  --maincolor: #825de6 !important;
  --maincolor2: #6336e3 !important;
  --text-white: #fff !important;
  --shadow: 0 12px 30px rgba(18, 28, 40, 0.06);
  --radius: 14px;
  --gap: 22px;
  --max-w: 500px;
  --orange: #ec9b49 !important;
  --red: #dc2626 !important;
  --green: #1ab54d !important;
  --light-green: #76d294 !important;
  --light-yellow: #fff5e9 !important;
  --yellow: #ffdaae !important;
  --gray-f5: #f5f5f5 !important;
  --light-purple-bg: rgba(108, 92, 231, 0.06);
  --card-hr-color: rgba(255, 255, 255, .6);
  --card-hr-color-2: rgba(255, 255, 255, .2);
}

/* ----------------------------------------------------
   UI/UX
---------------------------------------------------- */
#place-order:disabled{
    opacity:0.5;
    cursor:not-allowed;
    pointer-events:none;
}

.product-title-truncate {
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.img-slider {
    width:50px;
    height:600px;
    min-width:50px;
    overflow:hidden;
    display:block;
    background:#f5f5f5;
}

.img-slider img {
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.qa-image {
    width:100%;
    height:90px !important;
    /* min-width:95px; */
    overflow:hidden;
    border-radius:8px;
    display:block;
    background:#f5f5f5;
}

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

/* ----------------------------------------------------
   Modal Content
---------------------------------------------------- */
.modal-dialog .modal-content a {
  font-size: 14px !important;
  opacity: .8 !important;
}

.modal-dialog .modal-content .price {
  font-size: 18px !important;
  opacity: .8 !important;
}

/* ----------------------------------------------------
   Typography
---------------------------------------------------- */
input[type="password"],
input[type="email"],
input[type="text"],
input[type="file"],
input[type="num"],
textarea,
button,
body, p, select, a {
font-family: 'Figtree', sans-serif !important;
/* font-size: 14px !important; */
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Syne', sans-serif !important;
  font-weight: 600 !important;
}

.fs-14 {
    font-size: 14px !important;
}

.fs-16 {
    font-size: 16px !important;
}

.fs-18 {
    font-size: 18px !important;
}

.fs-20 {
    font-size: 20px !important;
}

/* .hdr-title {
font-family: 'Syne', sans-serif !important;
}

.rounded {
border-radius: 6px !important;
} */

.fw-700 { font-weight: 700 !important; }
.fw-800 { font-weight: 800 !important; }
.text-xs { font-size: 11px !important; }
.text-sm { font-size: 12px !important; }
.text-md { font-size: 14px !important; }
.text-bold { font-weight: 700 !important; }
.text-semibold { font-weight: 600 !important; }
.text {color: var(--text) !important; }
.text-gray {color: var(--dark-gray) !important; }
.text-light-gray {color: var(--lighter-gray) !important; }
.text-green {color: var(--green) !important; }
.text-red {color: var(--red) !important; }
.text-light-green {color: var(--light-green) !important; }
.text-dark { color: var(--dark) !important; }
.maincolor { color: var(--maincolor); }
.maincolor2 { color: var(--maincolor2); }
.muted { color: var(--text); opacity: .5 !important; }
.text-muted { color: var(--text); opacity: .8 !important; }

/* .parent-center {
  display: flex;
  justify-content: center;
} */

/* #liveClock {
  font-size: 13px;
  color: #999;
  margin-top: 10px;
} */

/* .date-time {
  display: flex;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #555;
} */

/* ----------------------------------------------------
   Logo (Responsive)
---------------------------------------------------- */
/* Desktop */
/* .navbar-left .logo-area {
  margin-left: -48px;
} */

/* Tablets */
/* @media (max-width: 992px) {
  .navbar-left .logo-area {
    margin-left: -24px;
  }
}

.banner-feature__shape {
  width: 225px;
} */

/* Mobile */
/* @media (max-width: 576px) {
  .navbar-left .logo-area {
    margin-left: -24px;
  }
  .banner-feature__shape {
  display: none;
}
} */

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

  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 */
  }
}

@media (max-width: 576px) {
#toast-container {
  width: 80%;
}
}

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

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

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

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

.badge-purple {
  display: inline-block;
  background: var(--maincolor);
  color: #fff !important;
  padding: 3px 10px 2px 10px;
  font-size: 11px;
  font-weight: 550;
  border-radius: 3px;
  text-align: center;
}

.badge-new {
  display: inline-block;
  background: var(--maincolor);
  color: #fff !important;
  padding: 0 5px 0 5px;
  margin-left: 5px;
  font-size: 9px;
  font-weight: 500;
  border-radius: 3px;
  text-align: center;
}

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

.badge-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: #666;
  color: #fff !important;

  width: 20px;
  height: 20px;

  font-size: 11px !important;
  font-weight: 550;
  border-radius: 3px;
}

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

.badge-hover:hover, .badge-hover:active {
  background: #825de6;
  color: #fff !important;
}

/* .rounded-circle {
  padding: 2px;
  border: 1px solid rgba(0, 0, 0, 0.3);
} */

/* ----------------------------------------------------
   Soft HR line
---------------------------------------------------- */
/* Simple and soft */
hr {
  border: none;
  height: 1px;
  background: rgba(0, 0, 0, 0.2);
  margin: 15px 0;
}

/* Extra soft (Modern UI) */
/* hr {
  border: none;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(0,0,0,0.6),
    transparent
  );
  margin: 28px 0;
} */

/* Dark & friendly */
/* hr {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  margin: 24px 0;
} */

/* ------------------------------------------------
   Lazy Image Fade-In (Clean & Smooth)
------------------------------------------------ */
img.lazy-img {
    opacity: 0;
    transform: scale(0.97);
    transition: opacity .45s ease, transform .45s ease;
}

img.lazy-img.img-loaded {
    opacity: 1;
    transform: scale(1);
}

img.lazy-img.img-error {
    opacity: 1;
    filter: grayscale(1);
}

/* ----------------------------------------------------
   TOAST
---------------------------------------------------- */
#toast-container {
  position: fixed;
  bottom: 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;

  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 */
  }
}

/* ----------------------------------------------------
   CART
---------------------------------------------------- */
/* .line {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-top: 1px solid rgba(15,23,31,0.04);
  font-size: 15px;
}

.faint-bar {
  height: 8px;
  border-radius: 6px;
  background: linear-gradient(90deg,#f4f6f8,#f0f3f6);
  margin: 12px 0;
}

.total-row .label {
  font-size: 16px;
  font-weight: normal;
  color: #888;
}

.total-row .value {
  font-size: 16px;
  font-weight: 600;
} */

/* ----------------------------------------------------
   Mobile (Responsive)
---------------------------------------------------- */
@media (max-width: 576px) {
.stagger-item {
  height: 80px !important;
}
}