:root {
  --gap-brand-to-search: 16px;
  --gap-search-to-ul: 32px;
  --gap-ul-items: 35px;
  --gap-ul-to-actions: 40px;
  --gap-actions: 40px;
  --search-width: 360px;
  --header-h: 72px;

  --section-padding: 80px 100px;
  --border-radius: 4px;
  --fs-h1: clamp(16px, 3vw, 48px);
  --fs-small: clamp(8px, 1vw, 16px);

  --card-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);


  --bg: #ffffff;
  --bg-card: #f5f5f5;
  --bg-surface: #f8f8f8;
  --surface-secondary: #eaeaea;
  --surface-primary: #f8f8f8;
  --surface-strong: #E5E5E7;
  --bg-section: var(--bg-surface);
  --bg-image: var(--bg-surface);
  --bg-table-tap: #f3f3f3;
  --bg-active: #E5E5E5;


  --bo: #000000;
  --border: #e6e6e6;
  --border-muted: #dcdcdc;
  --border-soft: #6a6a6a;


  --text: #0f0f0f;
  --text-secondary: #2E2E2E;
  --muted-strong: #2E2E2E;
  --muted: #6a6a6a;
  --muted-light: #737373;
  --soft: #f2f2f2;
  --accent: #00c05d;

  --btn-muted-bg: #8c8c8c;
  --btn-muted-text: #ffffff;


  --nav: #0f0f0f;



  /* ====== FOOTER PALETTE (Light Theme) ====== */
  --footer-bg: #ffffff;
  --footer-text: #0f0f0f;
  --footer-muted: #6a6a6a;
  --footer-border: #e6e6e6;
  --footer-a: #0d0d0d;
}

[data-theme="dark"] {
  --card-shadow: none;


  --bg: #0D0D0D;
  --bg-card: #000000;
  --bg-surface: #0d0d0d;
  --surface-secondary: #111;
  --surface-primary: #18181B;
  --surface-strong: #27272A;
  --bg-section: var(--bg-surface);
  --bg-image: var(--bg-surface);
  --bg-table-tap: #1A1A1A;
  --bg-active: #1C1C1C;


  --bo: #ffffff;
  --border-muted: #262626;
  --border-soft: #666666;
  --border: #1e1e1e;


  --text: #f5f5f5;
  --text-secondary: #E6E6E6;
  --muted: #bdbdbd;
  --muted-light: #D4D4D8;
  --muted-strong: #9f9f9f;
  --soft: #2a2a2a;
  --accent: #00a651;


  --btn-muted-bg: #7a7a7a;
  --btn-muted-text: #fff;



  --nav: #f5f5f5;


  /* Footer palette dark */
  --footer-bg: #000000;
  --footer-text: #f5f5f5;
  --footer-muted: #bdbdbd;
  --footer-border: #1e1e1e;
  --footer-a: #ffffff80;
}

html,
body {
  background: var(--bg-section);
  color: var(--text);

}

.site-header .navbar {
  min-height: var(--header-h);
  background: var(--bg);
}

.border-bottom {
  border-bottom: 1px solid var(--border) !important;
}

.brand-logo {
  height: 44px;
  display: block;
  margin-right: var(--gap-brand-to-search);
}

body[data-theme="light"] .theme-light {
  display: block !important;
}

body[data-theme="light"] .theme-dark {
  display: none !important;
}

body[data-theme="dark"] .theme-dark {
  display: block !important;
}

body[data-theme="dark"] .theme-light {
  display: none !important;
}

/* .search-wrap {
  margin-right: var(--gap-search-to-ul);
} */

.search-box {
  height: 44px;
  width: clamp(240px, 28vw, var(--search-width));
  border-radius: 12px;
  padding-inline: 10px;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
}

.search-box .input-group-text {
  border: 0;
  background: transparent;
  color: #6a6a6a;
}

.search-icon {
  border: 0;
  background: transparent;
  color: #6a6a6a;
}

.search-wrap .form-control {
  background: transparent;
  color: #0f0f0f;
  box-shadow: none;
  padding: 0;
  line-height: 1.4;
}

.search-wrap .form-control::placeholder {
  color: #6a6a6a;
}

/* main ul */
#mainNav {
  margin-right: 0 !important;
  min-width: 0;
}

.main-links {
  display: flex;
  gap: var(--gap-ul-items);
  margin-right: var(--gap-ul-to-actions);
}


.main-links {
  justify-content: center;
  flex: 1;
}

.nav-cta {
  margin-left: auto;
}

.navbar-nav .nav-link {
  color: var(--nav);
  font-weight: 600;
  padding: 22px 0 18px;
  position: relative;
  transition: color 0.15s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--nav);
}

.navbar-nav .nav-link.active {
  color: var(--accent);
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 12px;
  height: 2px;
  width: 0;
  border-radius: 2px;
  background: var(--accent);
  transition: width 0.2s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link.active::after {
  width: 70%;
}

.nav-cta {
  display: flex;
  align-items: center;

}

.nav-cta>*:nth-child(2) {
  margin-right: 8px;
}

.nav-cta>*:not(:nth-child(2)) {
  margin-right: var(--gap-actions);
}

.nav-cta>*:last-child {
  margin-right: 0;
}


.btn {
  height: 40px;
  /* border-radius: 9px; */
  font-weight: 400;
  display: inline-flex;
  align-items: center;
}

.icon-btn {
  width: 40px;
  justify-content: center;
}

.btn-muted {
  background: var(--btn-muted-bg);
  color: var(--btn-muted-text);
  border: 0;
  padding-inline: 16px;
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  border: 0;
  padding-inline: 14px;
}

.btn-outline-theme {
  border: 1px solid rgba(16, 208, 114, 0.25);
  color: var(--accent);
  background: transparent;
  box-shadow: 0 0 0 1px rgba(16, 208, 114, 0.08) inset;
}

/* toggler */
.navbar-toggler {
  border: 0;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(120,120,120,1)' stroke-linecap='round' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* sub nav */
.subnav {
  background: var(--bg);
}

.subnav .container-fluid {
  padding-top: 12px;
  padding-bottom: 14px;
}

.sub-links {
  display: flex;
  gap: 40px;
}

.sub-link {
  color: var(--sub);
  text-decoration: none;
  font-weight: 600;
}

.sub-link:hover {
  color: var(--accent);
}

.sub-link.active {
  color: var(--accent);
}

.sub-link .sub-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 12px;
  height: 2px;
  width: 0;
  border-radius: 2px;
  background: var(--accent);
  transition: width 0.2s ease;
  transform: translateX(-50%);
}

.sub-link .sub-link.active::after {
  width: 70%;
}

.sub-actions {
  display: flex;
  gap: 12px;
}

.btn-soft {
  background: var(--btn-muted-bg);
  color: var(--text);
  border: 0;
}

/* responsive */
@media (max-width: 991.98px) {
  .search-wrap.d-lg-flex {
    display: none !important;
  }

  .main-links {
    gap: 0;
    margin-right: 0;
  }

  .navbar-nav .nav-link {
    padding: 0.75rem 0;
  }

  .sub-links {
    gap: 24px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .subnav .container-fluid {
    padding-top: 0.75rem;
    padding-bottom: 1rem;
  }
}

.btn-muted:hover {
  background: var(--btn-muted-bg);
  color: var(--btn-muted-text);
  border-color: transparent;
  filter: none;
}

.btn-accent:hover {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
  filter: none;
}

.btn-outline-theme:hover {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(16, 208, 114, 0.25);
  box-shadow: 0 0 0 1px rgba(16, 208, 114, 0.08) inset;
  filter: none;
}

.btn-soft:hover {
  background: var(--btn-muted-bg);
  color: var(--text);
  border-color: transparent;
  filter: none;
}

.btn i,
.btn .bi {
  color: currentColor;
  pointer-events: none;
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
  .main-links {
    gap: 24px;
  }

  .search-wrap {
    margin: 0;
  }
}

@media (min-width: 1200px) {
  /* #mainNav {
    padding-left: 24px;
  } */

  .navbar .container-fluid,
  #mainNav {
    min-width: 0;
  }
}



@media (min-width: 992px) and (max-width: 1199.98px) {
  .navbar .container-fluid {
    padding-inline: 16px;
  }

  .search-box {
    width: clamp(220px, 24vw, 300px);

  }

  :root {
    --gap-search-to-ul: 56px;
    --gap-ul-items: 24px;
    --gap-ul-to-actions: 24px;
  }

  .main-links {
    flex: 1 1 auto;
    min-width: 0;
    gap: 10px;
  }

  .search-wrap {
    margin: 0;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0;
    font-size: 15px;
  }


}

@media (min-width: 1200px) {
  .search-box {
    width: clamp(260px, 26vw, 360px);
  }

  :root {
    --gap-search-to-ul: 96px;
  }
}

@media (max-width: 991.98px) {
  body {
    padding-top: var(--header-h) !important;
  }


  .navbar .container-fluid {
    padding-inline: 16px;
  }

  #mainNav {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  }

  .search-wrap.d-lg-none {
    margin: 8px 0 16px;
  }

  .search-wrap.d-lg-none .search-box {
    width: 100%;
  }

  .main-links {
    flex-direction: column;
    gap: 10px;
    margin: 8px 0 16px;
  }

  .navbar-nav .nav-link {
    padding: 0.65rem 0.25rem;
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  .navbar-nav .nav-link.active {
    background: var(--accent);
    color: #fff;
    border-radius: 12px;
    padding: 0.6rem 0.9rem;
  }

  .navbar-nav .nav-link.active i {
    color: #fff;
  }

  .main-links+.nav-cta {
    border-top: 1px solid var(--border);
    padding-top: 16px;
  }

  .nav-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .nav-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .navbar-nav .nav-link i {
    font-size: 1.1rem;
    line-height: 1;
  }
}

/* MOBILE NAV */

.mobile-nav {
  position: fixed;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 1030;
  background: var(--bg-card);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
  display: none;
}


.mobile-nav::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -2px;
  height: 2px;
  background: rgba(0, 0, 0, 0.15);
}

.mobile-nav ul {
  list-style: none;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 20px 6px;
  margin: 0;
  gap: 6px;
}

.mobile-nav ul li a {
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  line-height: 3;
  color: var(--bo);
  padding: 6px 4px;
  border-radius: 8px;
  transition: color 0.18s ease;
}

.mobile-nav ul li a i {
  font-size: 18px;
  line-height: 1;
  color: currentColor;
}

.mobile-nav ul li a:hover,
.mobile-nav ul li a:focus,
.mobile-nav ul li a.active {
  color: var(--accent);
}


/*  */

.mobile-plus {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 34px;
  line-height: 1;
  width: 44px;
  height: 44px;
  text-align: center;
  user-select: none;
  color: var(--muted);
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

/* #themeToggleMobile{
  
  margin: 20px auto 0;
  
} */

/* .cart-btn-mobile {
  position: fixed;
  top: 1rem;
  right: 15%;
  z-index: 99;
} */

/* @media (max-width:767px) {
   .cart-btn-mobile{
  right: 18vw;
 }
}


@media (max-width:600px) {
   .cart-btn-mobile{
  right: 20vw;
 }
}


@media (max-width:490px) {
   .cart-btn-mobile{
  right: 25vw;
 }
} */
/*  */

#mobileNav.offcanvas-end {
  width: 320px;
  background: var(--bg);
  border-left: 1px solid var(--border);
}

body.offcanvas-open,
body.modal-open {
  padding-right: 0 !important;
}

.offcanvas-backdrop+.offcanvas-backdrop {
  display: none;
}

@media (max-width: 991.98px) {
  .offcanvas-backdrop {
    --bs-backdrop-bg: #000;
    --bs-backdrop-opacity: 0.55;
  }

  #mobileNav.offcanvas-end {
    top: var(--header-h);
    bottom: var(--mobile-nav-h);
    height: auto;
  }

  #mobileNav .offcanvas-body {
    padding: 22px 16px;
  }

  #mobileNav .search-top {
    margin: 2px 0 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
  }

  #mobileNav .search-top .search-box {
    width: 100%;
    height: 40px;
    border-radius: 12px;
  }

  #mobileNav .main-links {
    flex-direction: column;
    gap: 8px;
    margin: 10px 0 16px;
  }

  #mobileNav .nav-link {
    display: block;
    width: 100%;
    padding: 0.55rem 0.8rem;
    border-radius: 12px;
  }

  #mobileNav .nav-link::after {
    display: none;
  }

  #mobileNav .nav-link.active {
    background: var(--accent);
    color: #fff;
  }

  #mobileNav .nav-cta {
    border-top: 1px solid var(--border);
    padding-top: 40px;
    gap: 10px;
  }

  #mobileNav .btn {
    height: 40px;
    border-radius: 12px;
  }

  #themeToggle {
    display: none !important;
  }

  .subnav {
    display: none;
  }


}

@media (max-width: 991.98px) {
  #mobileNav.offcanvas-end.show {
    position: fixed !important;
    top: var(--header-h);
    right: 0;
    bottom: 0;
    height: calc(100vh - var(--header-h));
    overflow-y: auto;
    background: var(--bg);
    z-index: 1055;
  }


  body.offcanvas-open {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
  }
}




header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1055;
  background: var(--bg);
  height: var(--header-h);
}


body {
  padding-top: calc(var(--header-h) + 80px);
}


.product-breadcrumb {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 35px 0;
  color: #fff;
  margin-top: 0;
  position: relative;
  z-index: 1;
}


header.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: rgba(0, 0, 0, 0.15);
}


/* ===== Fixed Offcanvas with internal scroll + shadow effect ===== */
/* @media (max-width: 991.98px) {
  #mobileNav.offcanvas-end.show {
    position: fixed !important;
    top: var(--header-h);
    right: 0;
    bottom: 0;
    height: calc(100vh - var(--header-h));
    overflow-y: auto;
    overflow-x: hidden;
    background: var(--bg);
    z-index: 1055;
    border-left: 1px solid var(--border);
    transition: box-shadow 0.3s ease;
  }

  body.offcanvas-open {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
  }

  #mobileNav .offcanvas-body {
    max-height: calc(100vh - 90px);
    overflow-y: auto;
    padding-bottom: 80px;
  }
}  */

/* === CART SIDEBAR STYLE === */

#cartSidebar.offcanvas-end {
  width: 360px;
  background: var(--bg-card);
  color: #fff;
  height: 100vh;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: -4px 0 25px rgba(0, 192, 93, 0.25);
  display: flex;
  flex-direction: column;
}

#cartSidebar .offcanvas-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 24px;
}

#cartSidebar .offcanvas-title {
  font-weight: 600;
  font-size: 18px;
  color: var(--bo);
}

#cartSidebar .offcanvas-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 24px;
}

#cartSidebar .cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

#cartSidebar .cart-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

#cartSidebar .fw-semibold {
  color: var(--bo);
}

#cartSidebar hr {
  border: none;
  border-top: 1px solid rgba(230, 230, 230, 0.8);
  margin: 12px 0;
  width: 100%;
  align-self: stretch;
}

#cartSidebar .qy-number {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #808080;
  font-size: 14px;
}

#cartSidebar .price {
  color: var(--bo);
  font-weight: 600;
}

#cartSidebar small {
  color: var(--bo);
}

#cartSidebar .btn-link {
  color: #808080;
}

#cartSidebar .btn-success {
  background-color: var(--accent);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

#cartSidebar .btn-success:hover {
  background-color: #00a651;
}

#cartSidebar .btn-dark {
  background-color: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

#cartSidebar .btn-dark:hover {
  background-color: var(--accent);
  color: #fff;
}

#cartSidebar .btn-close {
  background-color: #fff;
  opacity: 1;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}




/*=============================== footer section========================= */

footer {
  background-color: var(--footer-bg);
  width: 100%;
  font-family: "Poppins", sans-serif;
}

.footer-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 70px;
  padding: 70px 135px;
}

.logo {
  margin-bottom: 24px;
}

.footer-wrapper ul {
  list-style: none;
  text-align: start;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
}

.footer-wrapper ul li {
  color: var(--footer-a);
  font-size: 16px;
  font-weight: 400;
  position: relative;
}

.footer-wrapper ul li a {
  color: var(--footer-a);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  padding: 10px 0;
  text-decoration: none;
  text-align: center;
  transition: all 0.5s;
}

.footer-wrapper ul li a:hover {
  color: var(--accent);
}

.footer-wrapper ul li input {
  border: 1.5px solid var(--bo);
  border-radius: var(--border-radius);
  padding: 12px 16px;
  background-color: transparent;
  color: var(--footer-a);
  width: 100%;
}

.footer-wrapper ul li .input-arrow {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 20px;
  height: auto;
  cursor: pointer;
}

.footer-titles {
  font-size: 20px;
  font-weight: 500;
  line-height: 28.8px;
  color: var(--bo);
  margin-bottom: 24px;
  text-align: left;
}

.download-details p {
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  color: var(--footer-a);
}

.social-media-icons {
  display: flex;
  gap: 24px;
  font-size: 18px;
  color: var(--bo);
}

.social-media-icons a {
  text-decoration: none;
  color: var(--bo);
  transition: all 0.5s;
}

.social-media-icons a:hover {
  color: var(--accent);
}

.copyright {
  color: var(--footer-a);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

hr.solid {
  border: 1px solid var(--footer-a);
  width: 100%;
}

@media (max-width: 768px) {
  .mobile-nav {
    display: block !important;
  }

  footer {
    display: none !important;
  }

  .product-card {
    min-height: 670px;
  }

  .removeBtn {
    margin: 10px;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .footer-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }



  .product-set-btn {
    left: 22%;
  }
}

@media (min-width: 992px) and (max-width: 1500px) {
  .footer-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

/* footer .logo .theme-light {
  display: block !important;
}

footer .logo .theme-dark {
  display: none !important;
} */

footer .social-media-icons img.theme-light {
  display: inline-block !important;
}

footer .social-media-icons img.theme-dark {
  display: none !important;
}


/* ============================== banner-slider ============================= */

.banner-slider {
  font-family: "Poppins", sans-serif;
}

.carousel-indicators [data-bs-target].active {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--accent);
  box-shadow: 0 0 15px 2px var(--accent);
  opacity: 1;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border: 2px solid transparent;
  border-radius: 50%;
  background-color: #0d0d0d;
  opacity: 50%;
}

/* ============================= category section========================= */

.category-section {
  background-color: var(--bg-section);
  padding: var(--section-padding);
  font-family: "Poppins", sans-serif;

}


.section-title {
  font-size: 36px;
  font-weight: 600;
  color: var(--accent);
  position: relative;
  padding: 0 40px;
  margin: 0;
}


.section-title::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 40px;
  border-radius: var(--border-radius);
  background-color: var(--accent);
  left: 0px;
  bottom: 0px;

}

.category-img {
  background-image: var(--categ-bg);
  background-position: center;
  background-size: cover;
  width: 95px;
  height: 95px;
  border-radius: 50%;
  position: relative;

}

.category-img .layer {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(2px);
  border-radius: 50%;
  border: 1px solid var(--bo);
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.categ-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--bo);
  margin-top: 5px;
  text-align: center;
  max-width: 108px;
  white-space: normal;

}



.swiper-category,
.swiper-sales,
.swiper-devices {
  width: 100%;
  overflow: hidden;
  padding-bottom: 20px;

}

.swiper-wrapper {
  white-space: nowrap;
  display: flex;
  align-items: stretch;
  /* justify-content:center ; */

}


.content {
  display: flex;
  flex-direction: column;
  /* align-items: stretch; */
  justify-content: center;
  box-sizing: border-box;
  align-items: center;
  height: 100%;
}

.swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  height: auto;
}

.controls {
  padding: 0 20px 0 0;
}



.controls .prev,
.controls .next {
  border-radius: 50%;
  background-color: var(--bg-card);
  color: var(--bo);
  border: 1px solid var(--bo);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  transition: all 0.5s;
}

.controls .prev:hover,
.controls .next:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
  cursor: default;
}

.swiper-category i {
  font-size: 28px;
  color: #fff;
}

.vr-icon {
  display: inline-block;
  color: #fff;
  padding: 3px 6px;
  border: 2px solid #fff;
  border-radius: var(--border-radius);
  font-size: 16px;
}

@media (max-width:600px) {
  .section-title {
    font-size: 23px;
  }
}

@media (max-width:756px) {
  .section-title::before {
    width: 14px;
    height: 27px;
  }

  .section-title {
    padding: 0 27px;
  }
}

/*============================== sales section============================ */

.sales-section {
  background-color: var(--bg-section);
  padding: var(--section-padding);
  font-family: "Poppins", sans-serif;
}

.sales-section .row {
  margin: 0 0 0 0;
  --bs-gutter-x: 0;
}

.flash-sales-content {
  margin-top: 2px;
}

.flash-sales-content p {
  font-size: 2rem;
  color: var(--bo);
  font-weight: 400;
  line-height: 1;

}

.flash-sales-content i {
  font-size: 2rem;
  color: var(--bo);
}

.countDown-wrapper {
  margin-left: 20px;
  text-align: center;
  position: relative;
  line-height: 1.2;
}

.dots {
  position: relative;
  width: 3px;
  height: 3px;
  background: var(--accent);
  border-radius: 50%;
  left: 10px;
  top: 17px;
}

.dots::after {
  position: absolute;
  content: "";
  width: 3px;
  height: 3px;
  background: var(--accent);
  border-radius: 50%;
  top: 12px;
}

.countDown div {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 4%;
  color: var(--bo);
}

.countDown small {
  font-size: 12px;
  font-weight: 500;
}



.product-card {
  background-color: var(--bg-card);
  border-radius: var(--border-radius);
  border: 1px solid rgba(0, 192, 93, 0.15);
  padding: 24px;
  transition: all 0.3s ease-in-out;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  box-shadow: 0 0 6px var(--accent);
  transform: scale(1.03);
  z-index: 1;
}

.product-card .card-body {

  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card .product-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--bo);
  flex: 1;

}

.product-card .image {
  position: relative;
  background-color: var(--bg-image);
  border-radius: var(--border-radius);
  margin-bottom: 16px;
}

.product-card .image img {
  padding: 6x;
}

.discount-percentage-wrapper {
  background-color: var(--accent);
  color: #0f0f0f;
  font-size: 14px;
  font-weight: 400;
  border-radius: 4px;
  position: absolute;
  padding: 4px 12px;
  top: 12px;
  left: 12px;
}

.wish-view-product a {
  position: absolute;
  right: 10%;
  text-decoration: none;
  color: var(--accent);
  font-size: 22px;
  font-weight: 400;
  transition: all 0.5s;
  cursor: pointer;
  text-align: center;
  z-index: 1;

}

.wish-view-product a:hover {
  color: var(--accent);
}

.wish-view-product {
  position: absolute;
  top: 12px;
  right: 12px;
}

.wish-view-product .view-btn {
  margin-top: 40px;
}

.price-details {
  display: flex;
  align-items: center;

}

.price-details .priceAfterSale {
  color: var(--accent);
  font-size: 15px;
  font-weight: 500;

}

.price-details .priceBeforeSale {
  color: #808080;
  font-size: 14px;
  font-weight: 500;
  margin-left: 12px;
  position: relative;
}

.price-details .priceBeforeSale::after {
  position: absolute;
  content: "";
  top: 45%;
  width: 100%;
  left: 45%;
  transform: translate(-50%);
  height: 1px;
  background-color: #808080;
}

.rateDetails i {
  color: #FFB84D;
}

.rateDetails {
  gap: 5px;
}

.total-rate {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  margin-top: 8px;
}

@media (max-width:600px) {
  .flash-sale-wrapper {
    display: block !important;
  }

  .flash-sales-content {
    justify-content: flex-start !important;
  }

  .countDown-wrapper {
    margin-left: 0;
  }

  .countDown {
    margin: 10px 0;
  }
}

@media (max-width:660px) {
  .flash-sales-content {
    margin-top: 15px;
  }



  .controls {
    padding: 0;
    margin-top: 15px;
  }

  .countDown div {
    font-size: 24px;
  }

  .flash-sales-content p {
    font-size: 23px;
  }

  .flash-sales-content i {
    font-size: 23px;
  }

  .dots {
    top: 10px;
  }

}

@media (min-width:660px) and (max-width:750px) {
  .flash-sales-content p {
    font-size: 23px;
  }

  .flash-sales-content i {
    font-size: 23px;
  }


  .controls {
    margin-top: 15px;
  }

  .dots {
    top: 10px;
  }


  .product-set-btn {
    left: 22%;
  }
}

@media (min-width:750px) and (max-width:1400px) {
  .controls {
    margin-top: 15px;
  }


  .product-set-btn {
    left: 22%;
  }
}


/* ========================== category banner section =========================*/

.category-banner {
  position: relative;
  height: auto;
}

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

.banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  padding: 69px 56px;
}

.banner-logo {
  font-size: 20px;
  font-weight: 600;
  color: var(--accent);
}

.banner-caption {
  font-size: var(--fs-h1);
  font-weight: 600;
  color: #121212;
  max-width: 700px;
  margin: 32px 0px;
}

.banner-countDown-wrapper {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: var(--bg-section);
  color: var(--bo);
  font-size: var(--fs-small);
  font-weight: 500;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 35px;
}






@media (max-width:470px) {
  .section-title {
    font-size: 23px;
    padding-right: 10px;

  }

  .category-section>.d-flex.align-items-center.justify-content-between {
    flex-direction: column;
    align-items: start !important;
  }

  .category-section .controls {
    margin-left: auto;
  }

  .category-banner {
    height: 300px !important;

    img {
      object-fit: inherit !important;
    }
  }

  .banner-bg {
    padding: 8px 8px;
  }

  .banner-caption {

    margin: 6px 0px;
    max-width: 230px;
    line-height: 1;
    font-size: 12px;
  }

  .banner-countDown-wrapper {
    width: 50px;
    height: 50px;
    margin-right: 10px;

  }

  .banner-logo {
    font-size: 24px;
  }
}

@media (max-width:500px) {
  .banner-bg {
    padding: 14px 14px;
  }

  .category-banner {
    height: 300px !important;

    img {
      object-fit: inherit !important;
    }
  }

  .banner-caption {

    margin: 6px 0px;
    max-width: 230px;
    line-height: 1;

  }

  .banner-countDown-wrapper {
    width: 55px;
    height: 55px;
    margin-right: 10px;
  }

  .section-title {
    font-size: 23px;
    padding-right: 10px;

  }

}

@media (min-width:500px) and (max-width:600px) {
  .banner-bg {
    padding: 18px 18px;
  }

  .banner-caption {

    margin: 6px 0px;
    max-width: 230px;
  }

  .banner-countDown-wrapper {
    width: 55px;
    height: 55px;
    margin-right: 10px;
  }

  .section-title {
    font-size: 23px;
    padding-right: 10px;

  }
}

@media (min-width:600px) and (max-width:756px) {
  .banner-bg {
    padding: 18px 18px;
  }

  .banner-caption {

    margin: 6px 0px;
    max-width: 290px;
  }

  .banner-countDown-wrapper {
    width: 55px;
    height: 55px;
    margin-right: 10px;
  }

  .section-title {
    font-size: 23px;
    padding-right: 10px;

  }

}


@media (min-width:756px) and (max-width:992px) {
  .banner-bg {
    padding: 30px 30px;
  }

  .banner-caption {

    margin: 15px 0px;
    max-width: 400px;
  }

  .banner-countDown-wrapper {
    width: 55px;
    height: 55px;

    margin-right: 10px;
  }

}

@media (min-width:992px) and (max-width:1200px) {
  .banner-caption {

    margin: 25px 0px;
    max-width: 450px;
  }

  .banner-countDown-wrapper {
    width: 60px;
    height: 60px;

    margin-right: 10px;
  }



}



@media (min-width:1200px) and (max-width:1330px) {
  .banner-caption {
    max-width: 520px;
  }

  .banner-countDown-wrapper {
    width: 70px;
    height: 70px;
    margin-right: 24px;
  }

}


@media (max-width:767px) {
  .carousel-indicators {
    margin-bottom: 5px;
  }

  .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
  }
}


/* ==================== used devices section============================= */

.used-devices {
  background-color: var(--bg-section);
  padding: var(--section-padding);
  font-family: "Poppins", sans-serif;
}


.swiper-devices .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.swiper-devices .swiper-slide {
  display: flex;
  align-items: stretch;
}

.swiper-devices .product-wrapper {
  flex: 1;
  display: flex;
}

.swiper-devices .product-card,
.swiper-devices .explore-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}


.explore-card {
  background-image: url(../img/3414c6bdcab9a6cbbaeeebebdbf889608aa8eab0.jpg);
  background-size: cover;
  border-radius: var(--border-radius);
  border: 1px solid var(--accent);
  box-shadow: 0 0 6px var(--accent);
  padding: 40px 30px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: max-content;
  transition: all 0.3s ease-in-out;
  position: relative;
}

.explore-card:hover {
  transform: scale(1.03);
  z-index: 1;
}

.explore-caption {
  font-size: 40px;
  font-weight: 700;
  color: #000000;
  word-wrap: break-word;
  white-space: normal;
  overflow-wrap: break-word;
}

.shop-btn {
  background-color: var(--accent);
  color: white;
  border: 1px solid var(--accent);
  padding: 12px 20px;
  border-radius: var(--border-radius);
  width: auto;
  display: flex;
  align-items: center;
  gap: 17px;
}

/* .shop-btn i {
  padding-left: 17px;
} */

.cartBtn {
  width: 100%;
  background-color: var(--accent);
  padding: 10px 0;
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  border-bottom-left-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
  border: 0;
  opacity: 0;
  transition: all 0.5s;
}

.product-card:hover .cartBtn {
  opacity: 1;
}

/* popular products */

.popular-products {
  background-color: var(--bg-section);
  padding: 80px 100px;
  font-family: "Poppins", sans-serif;
}

.pp-subtitle {
  color: var(--text);
  font-size: 2rem;
}

.pp-card .image {
  background-color: var(--bg-image);
  border-radius: 4px;
  position: relative;
  margin-bottom: 14px;
}

.pp-card .image img {
  padding: 28px 28px;
}

.pp-card .product-title {
  color: var(--bo);
  font-size: 16px;
  font-weight: 500;
  margin: 10px 0 12px;
  min-height: 40px;
}

.pp-card .rateDetails i {
  color: #ffb84d;
}

.pp-card .total-rate {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.pp-card:hover .image {
  outline: 1px solid rgba(0, 192, 93, 0.15);
}

@media (max-width: 600px) {
  .popular-products {
    padding: 48px 16px;
  }

  .pp-subtitle {
    font-size: 23px;
  }

  html,
  body {
    overflow-x: clip;
  }

  .category-section .row,
  .sales-section .row,
  .popular-products .row {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 992px) {

  .category-section,
  .sales-section,
  .popular-products,
  .used-devices {
    padding: 48px 16px;
  }
}

.swiper-wrapper {
  white-space: normal;
}

.popular-products .row>[class*="col-"] .d-flex.align-items-center.justify-content-between {
  flex-wrap: wrap;
  row-gap: 6px;
  min-width: 0;
}

.pp-card .price-details {
  display: flex;
  align-items: baseline;
  gap: 8px;
  min-width: 0;
  white-space: nowrap;
}

.pp-card .priceAfterSale {
  font-size: clamp(13px, 4vw, 16px);
}

.pp-card .priceBeforeSale {
  font-size: clamp(12px, 3.6vw, 13px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 90px;
  position: relative;
}

.pp-card .rateDetails {
  gap: 2px;
  min-width: 0;
}

.pp-card .rateDetails i {
  font-size: 14px;
}

.pp-card .total-rate {
  font-size: 12px;
}

.popular-products .row {
  margin-left: calc(var(--bs-gutter-x, 1.5rem) * -0.5) !important;
  margin-right: calc(var(--bs-gutter-x, 1.5rem) * -0.5) !important;
}

@media (max-width: 575.98px) {
  .pp-card .rateDetails {
    width: 100%;
    justify-content: flex-start;
  }
}

:root {
  --mobile-nav-h: 0px;
}

@media (max-width: 768px) {

  html,
  body {
    min-height: 100%;
  }

  body {
    padding-bottom: calc(var(--mobile-nav-h, 64px) + 24px);
  }

  .price-details .priceAfterSale {
    font-size: 13px;
  }
}

/* Benefits section */
.usp-section {
  background: var(--bg-section);
  padding: 80px 100px;
  font-family: "Poppins", sans-serif;
}

.usp-card {
  background: #F4F6FA;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 18px;
  gap: 14px;
  min-height: 86px;
  box-shadow: var(--card-shadow);
}

.usp-icon {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in oklab, var(--accent) 16%, transparent);
  color: var(--accent);
  flex: 0 0 54px;
}

.usp-icon i {
  font-size: 22px;
  line-height: 1;

}

.usp-title {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
}

.usp-sub {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  margin-top: 4px;
}

@media (max-width: 600px) {
  .usp-section {
    padding: 48px 16px;
  }

  .usp-icon {
    width: 48px;
    height: 48px;
  }

  .usp-title {
    font-size: 15px;
  }

  .usp-sub {
    font-size: 12px;
  }
}


@media (max-width:992px) {
  .product-card .price-details {
    flex-direction: row;
  }

  /* .product-card .price-details .priceBeforeSale {
    margin-left: 12px;
  } */

}


@media (min-width:992px) and (max-width:1100px) {
  .price-details .priceBeforeSale {
    font-size: 13px;
  }

  .price-details .priceAfterSale {
    font-size: 13px;
  }


}


/*=============================== shop page==========================  */

.shop-section {
  padding: var(--section-padding);
  background-color: var(--bg-section);
}

.filter-products {
  background-color: var(--bg-card);
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
}

.filter-sections {
  padding: 24px;
}

.filter-title {
  color: var(--accent);
  font-weight: 500;
  font-size: 16px;
}

.radio-list {
  list-style: none;
  padding: 0;
}

.radio-list li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 12px;
}

.radio-list li label {
  font-size: 14px;
  font-weight: 500;
  color: #475156;
  margin-left: 8px;
}

.radio-list li input[type="radio"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid white;
  border-radius: 50%;
  background-color: white;
}

.radio-list li input[type="radio"]:checked {
  border: 6px solid var(--accent);
}

.radio-list li input[type="radio"]:checked+label {
  color: var(--accent);
}

hr {
  border: 1px solid #e4e7e9;
  margin: 0;
  margin: 0 24px;
}

.brands-list {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 4px;
}

.brand {
  width: auto;
}

.brands-list .brand input[type="checkbox"] {
  appearance: none;
  width: 14px;
  height: 14px;
  background-color: white;
  position: relative;
  cursor: pointer;
}

.brands-list .brand input[type="checkbox"]:checked {
  background-color: var(--accent);
}

.brands-list .brand input[type="checkbox"]:checked+label {
  color: var(--accent);
}

.brands-list .brand input[type="checkbox"]::before {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  color: white;
  font-size: 10px;
}

.brands-list .brand label {
  font-size: 14px;
  color: #475156;
  margin-left: 8px;
}

.popular-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}



.popular-tags button {
  border: 1px solid var(--border-muted);
  color: #818181;
  padding: 6px 20px;
  background-color: var(--bg-card);
  border-radius: 2px;
  width: fit-content;
  transition: all 0.5s;
}

.popular-tags button:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.filter-product-card {
  padding: 32px;
  border: 2px solid var(--accent);
  border-radius: var(--border-radius);
  transition: all 0.3s ease-in-out;
  position: relative;
}

.filter-product-card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.filter-product-card .image {
  display: flex;
  justify-content: center;
  align-items: center;

  img {
    width: 160px;
    height: 160px;
  }
}

.filter-product-card_title {
  margin: 24px 0;
}

.filter-product-card_title p {
  color: var(--accent);
  font-size: 24px;
  font-weight: 600;
  text-align: center;
}

.filter-product-card_price {
  display: flex;
  align-items: center;
  justify-content: center;
}

.filter-product-card_price span:nth-child(1) {
  font-size: 16px;
  font-weight: 400;
  color: var(--btn-text);
  margin-right: 5px;
}

.filter-product-card_price .price {
  background-color: var(--accent);
  border-radius: var(--border-radius);
  color: var(--bo);
  font-size: 22px;
  font-weight: 600;
  padding: 6px 12px;
}

.filter-product-card_addCart {
  margin: 24px 0;
}

.filter-product-card_details {
  margin: 24px 0;
}

.filter-product-card_addCart .cartBtn {
  opacity: 1;
  border-radius: var(--border-radius);
  border: 1px solid transparent;
  color: var(--bo);
  padding: 27px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease-in-out;
}

.filter-product-card_addCart .cartBtn:hover {
  background-color: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.filter-product-card_details .detailsBtn {
  border: 1px solid var(--accent);
  color: var(--accent);
  background-color: var(--bg-card);
  padding: 27px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-radius: var(--border-radius);
  transition: all 0.5s ease-in-out;
}

.filter-product-card_details .detailsBtn:hover {
  background-color: var(--accent);
  color: var(--bo);
}

.filter-product-card_details .detailsBtn i {
  margin-left: 15px;
}

.dual-range {
  position: relative;
  width: 100%;
  height: 2px;
  background: #ddd;
  border-radius: var(--border-radius);
  margin: 20px 0;
}

.range-track {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: white;
  border-radius: var(--border-radius);
  z-index: 1;
}

input[type="range"] {
  position: absolute;
  width: 100%;
  top: 0;
  height: 2px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  z-index: 2;
}

input[type="range"]::-webkit-slider-thumb {
  pointer-events: auto;
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  background-color: white;
  border: 2px solid var(--accent);
  border-radius: 50%;
  cursor: pointer;
}

.dual-input-price {
  display: flex;
  gap: 10px;
}

.dual-input-price input {
  width: 50%;
  padding: 8px 12px;
  border-radius: var(--border-radius);
  border: 0;
}


.shop-section .filter-mobile-btn {
  border-radius: var(--border-radius);
  padding: 6px 20px;
  min-height: 100%;
  margin: 0;
}

@media (max-width:500px) {
  .shop-section .row .col-6.col-md-6.col-lg-6.col-xl-4 {
    width: 100%;
  }

  .filter-sections {
    padding: 12px;
  }

  hr {
    margin: 0 12px;
  }


  #filterShopOffcanvas .offcanvas-body,
  #filterDeviceOffcanvas .offcanvas-body {
    padding: 0 !important;
  }



}

@media (max-width: 600px) {
  .popular-tags button {
    font-size: 12px;
  }

  .popular-tags {
    gap: 5px;
  }

  .brands-list {
    display: block;
  }

  .shop-header {
    margin: 0 !important;
  }
}

@media (max-width:992px) {
  .shop-section {
    padding: 48px 16px;
  }

  .shop-section .col-xl-3.col-lg-4 {
    display: none;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .filter-product-card_addCart .cartBtn {
    padding: 15px 8px;
    font-size: 11px;
  }

  .filter-product-card_addCart .cartBtn i {
    margin-right: 5px !important;
  }

  .filter-product-card_details .detailsBtn {
    padding: 15px 8px;
    font-size: 11px;
  }

  .filter-product-card_details .detailsBtn i {
    margin-left: 5px !important;
  }

  .filter-product-card_price .price {
    font-size: 11px;
    padding: 6px 8px;
  }

  .filter-product-card_price span:nth-child(1) {
    font-size: 11px;
  }
}

@media (min-width: 1200px) and (max-width: 1400px) {
  .filter-product-card_addCart .cartBtn {
    padding: 15px 8px;
    font-size: 11px;
  }

  .filter-product-card_addCart .cartBtn i {
    margin-right: 5px !important;
  }

  .filter-product-card_details .detailsBtn {
    padding: 15px 8px;
    font-size: 11px;
  }

  .filter-product-card_details .detailsBtn i {
    margin-left: 5px !important;
  }

  .filter-product-card_price .price {
    font-size: 11px;
    padding: 6px 8px;
  }

  .filter-product-card_price span:nth-child(1) {
    font-size: 11px;
  }
}

@media (min-width: 1400px) and (max-width: 1550px) {
  .filter-product-card_addCart .cartBtn {
    padding: 15px 8px;
    font-size: 14px;
  }

  .filter-product-card_addCart .cartBtn i {
    margin-right: 5px !important;
  }

  .filter-product-card_details .detailsBtn {
    padding: 15px 8px;
    font-size: 14px;
  }

  .filter-product-card_details .detailsBtn i {
    margin-left: 8px !important;
  }

  .filter-product-card_price .price {
    font-size: 14px;
  }

  .swiper-sales .product-card {
    min-height: 670px !important;
  }
}

@media (min-width: 992px) and (max-width: 1660px) {
  .popular-tags button {
    font-size: 16px;
  }

  .popular-tags {
    gap: 10px;
  }

  .brands-list {
    display: block;
  }

  .brands-list .brand label {
    font-size: 16px;
  }
}

/* shop columns */

.shop-controls select {
  background-color: var(--bg-card);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 14px;
}

.shop-card {
  background-color: var(--bg-card);
  border: 1px solid rgba(0, 192, 93, 0.15);
  border-radius: 8px;
  padding: 12px;
  transition: 0.3s;
}

.shop-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 6px rgba(0, 192, 93, 0.3);
}

.product-img {
  background-color: var(--bg-image);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.product-img img {
  border-radius: 6px;
  padding: 20px 0px;
}

.product-img .discount {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--accent);
  color: #fff;
  padding: 3px 6px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 600;
}

.product-img .icons {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--bo);
}

.product-img .icons i {
  transition: all 0.5s;
}

.product-img .icons i:hover {
  color: var(--accent);
}

.product-info h6 {
  color: #000000;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 6px;
}

.price {
  display: flex;
  gap: 8px;
  align-items: baseline;
}

.price .after {
  color: var(--accent);
  font-weight: 600;
}

.price .before {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 13px;
}

.rating i {
  color: #ffb84d;
  font-size: 13px;
}

.rating span {
  color: var(--muted);
  font-size: 12px;
}

/* Responsive */

.control-box {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 12px;
  color: var(--muted);
  font-size: 14px;
  min-width: 160px;
}

.control-box i {
  color: var(--muted);
  font-size: 14px;
}

.form-select-control {
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 14px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

.form-select-control:focus {
  outline: none;
  box-shadow: none;
}

.control-box select option {
  background-color: var(--bg-section, #111);
  color: var(--text, #fff);
  padding: 10px;
  font-size: 14px;
  position: relative;
}

.form-select-control option:checked {
  background: var(--accent);
  color: #fff;
}

.shop-header {
  gap: 12px;
}

@media (max-width: 768px) {
  .control-box {
    min-width: 130px;
    font-size: 13px;
    padding: 5px 10px;
  }
}

.form-select-control option {
  padding: 8px 12px;
  background-color: var(--bg-section);
  color: var(--text);
  transition: 0.2s ease, color 0.2s ease;
}

.form-select-control option:hover {
  background-color: var(--accent);
  color: #fff;
}

.form-select-control {
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 14px;
  padding: 4px 8px;
  border-radius: 4px;
}

.form-select-control::-ms-expand {
  display: none;
}

/* ===================== PAGINATION ===================== */
.pagination-bar {
  background-color: var(--bg-card);
  box-shadow: 0 0 10px rgba(0, 192, 93, 0.35);
  border-radius: 8px;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Inter", sans-serif;
  color: var(--text);
  gap: 16px;
}

/* Left side text */
.pagination-info {
  font-size: 14px;
  color: var(--text);
}

/* Center controls */
.pagination-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.page-btn {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 14px;
  transition: 0.3s;
  cursor: pointer;
}

.page-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Page numbers */
.page-numbers .page-num {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 14px;
  transition: 0.3s;
  cursor: pointer;
}

.page-num:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.page-num.active {
  background-color: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

/* Right side (items per page) */
.pagination-items {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--text);
}

.page-select {
  background-color: var(--bg);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.page-select:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Responsive */
@media (max-width: 992px) {
  .pagination-bar {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 10px;
    padding: 14px;
  }

  .pagination-center {
    justify-content: center;
  }

  .pagination-items {
    justify-content: center;
  }
}

@media (max-width: 576px) {

  .page-btn,
  .page-num {
    padding: 5px 8px;
    font-size: 12px;
  }

  .pagination-info {
    font-size: 12px;
  }

  .page-select {
    font-size: 12px;
    padding: 3px 5px;
  }
}

@media (max-width: 800px) {
  .pagination-bar {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 12px;
    padding: 14px 16px;
  }

  .pagination-info {
    width: 100%;
    order: 1;
  }

  .pagination-center {
    order: 2;
    justify-content: center;
    flex-wrap: wrap;
  }

  .pagination-items {
    order: 3;
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .pagination-bar {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .pagination-info {
    font-size: 13px;
  }

  .pagination-center {
    gap: 6px;
  }

  .page-btn,
  .page-num {
    padding: 5px 9px;
    font-size: 13px;
  }

  .pagination-items {
    font-size: 13px;
    gap: 6px;
  }

  .page-select {
    padding: 3px 6px;
    font-size: 13px;
  }
}

@media (max-width: 400px) {

  .page-btn,
  .page-num {
    padding: 4px 7px;
    font-size: 16px;
  }

  .pagination-info,
  .pagination-items {
    font-size: 12px;
  }

  .pagination-bar {
    padding: 10px 12px;
  }
}

/* ========== SINGLE PRODUCT PAGE ========== */

/* ========== PRODUCT BREADCRUMB SECTION ========== */
.product-breadcrumb {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 35px 0;
  color: #fff;
}

.breadcrumb-wrapper {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #ccc;
  padding-left: 70px;
  gap: 10px;
}

.breadcrumb-icon {
  font-size: 18px;
  color: #fff;
  opacity: 0.9;
  line-height: 1;
  display: flex;
  align-items: center;
}

.breadcrumb-separator {
  color: #aaa;
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.breadcrumb-link {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb-link:hover {
  color: var(--accent);
}

.breadcrumb-current {
  color: var(--accent);
  font-weight: 400;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .breadcrumb-wrapper {
    font-size: 14px;
    padding-left: 30px;
  }

  .breadcrumb-separator {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .breadcrumb-wrapper {
    flex-wrap: wrap;
    gap: 6px;
    padding-left: 20px;
  }
}

/* Main Product Section */

.single-product-section,
.related-products {
  background: var(--bg-section);
}

/* Thumbnails */
.product-thumbs .thumb {
  width: 60px;
  border-radius: 3px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.3s;
}

.product-thumbs .thumb:hover,
.product-thumbs .thumb.active {
  border-color: var(--accent);
}

/* Related Products */
.related-products h3 {
  color: var(--text);
  font-size: 24px;
}

.related-products .shop-card {
  background: #000000;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  transition: 0.3s;
}

.related-products .shop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 8px rgba(0, 192, 93, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
  .single-product-section .product-title {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .product-breadcrumb {
    padding: 40px 0;
  }



  .product-thumbs {
    flex-direction: row !important;
    justify-content: center;
  }

  .main-image img {
    max-width: 80%;
  }
}

/* ========== SINGLE PRODUCT DESIGN ========== */
.single-product-section {
  color: var(--text);
}

.main-image img {
  max-width: 100%;
  border-radius: 8px;
}

/* Arrow buttons */
.product-thumbs-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.product-thumbs {
  max-height: 350px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
}

/* Product Details Right */
.product-title {
  color: var(--accent);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 1px;
}

.stock-status {
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  padding: 3px 10px;
  border-radius: 5px;
  font-weight: 500;
}

.price {
  display: flex;
  align-items: center;
  gap: 10px;
}

.old-price {
  text-decoration: line-through;
  color: #aaa;
}

.new-price {
  color: var(--accent);
  font-weight: 700;
}

.discount-tag {
  background: #e53935;
  color: #fff;
  padding: 3px 6px;
  border-radius: 5px;
  font-size: 13px;
}

.brand-section .brand-label {
  font-weight: 600;
}

.brand-img {
  width: 60px;
  border-radius: 4px;
  background: #fff;
  padding: 2px;
}

.share-section span {
  color: #ccc;
  margin-right: 5px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  transition: 0.3s;
}

.social-icon:hover {
  background: #00a04e;
}

/* Quantity and buttons */
.quantity-control {
  background: var(--surface-secondary);
  border-radius: 6px;
  overflow: hidden;
}

.qty-btn {
  background: none;
  border: none;
  color: #fff;
  width: 35px;
  height: 35px;
  cursor: pointer;
  font-size: 18px;
  transition: 0.3s;
}

.qty-btn:hover {
  color: var(--accent);
}

.qty-input {
  width: 50px;
  text-align: center;
  border: none;
  background: transparent;
  color: #fff;
  outline: none;
}

/* Wishlist button */
.wishlist-btn {
  background: var(--surface-secondary);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 6px;
  color: #fff;
  transition: 0.3s;
}

.wishlist-btn:hover {
  color: var(--accent);
}

/* Responsive */
@media (max-width: 992px) {
  .product-title {
    font-size: 22px;
  }

  .thumb-nav {
    left: 5%;
  }

  .main-image img {
    max-width: 85%;
  }
}

@media (max-width: 768px) {

  .thumb-nav.up,
  .thumb-nav.down {
    display: none;
  }

  .product-thumbs {
    flex-direction: row !important;
    justify-content: center;
    max-height: unset;
  }

  .main-image img {
    max-width: 80%;
  }
}

@media (max-width:500px) {
  .related-products .row .col-6 {
    width: 100%;
  }
}

/* Thumbnail images */

.product-media {
  display: grid;
  grid-template-columns: 90px 1fr;
  column-gap: 24px;
  align-items: stretch;
}

.product-thumbs-wrapper {
  display: grid;
  grid-template-rows: auto 1fr auto;
  height: 100%;
}

.thumb-nav {
  border: none;
  background: rgba(0, 0, 0, 0.6);
  color: #e0e0e0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto;
  transition: 0.2s;
}

.thumb-nav:hover {
  color: var(--accent);
  background: rgba(0, 192, 93, 0.15);
}

.thumb-nav.disabled {
  opacity: 0.35;
  pointer-events: none;
}

.product-thumbs {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
}

.thumb {
  width: 68px;
  height: 68px;
  object-fit: contain;
  border-radius: 2px;
  background: #0f0f0f;
  border: 2px solid transparent;
  cursor: pointer;
  transition: 0.2s;
}

.thumb:hover,
.thumb.active {
  border-color: var(--accent);
}

.main-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.main-image img {
  max-width: 100%;
  max-height: 560px;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .product-media {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }

  .product-thumbs-wrapper {
    grid-template-rows: 1fr;
  }

  .thumb-nav {
    display: none;
  }

  .product-thumbs {
    flex-direction: row;
    justify-content: center;
    overflow: auto;
  }
}

.product-desc {
  color: #808080;
}

/* row: brand left, share right */
.brand-share-row {
  width: 100%;
}

/* share label + icons */
.share-section .share-label {
  color: #cfcfcf;
  font-weight: 500;
}

.social-list {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.share-section .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--soft);
  color: var(--muted);
  text-decoration: none;
  box-shadow: var(--card-shadow);
  transition: transform 0.15s ease, background-color 0.15s ease,
    color 0.15s ease, box-shadow 0.15s ease;
}

.share-section .social-icon:hover {
  background: var(--accent);
  color: #fff;
  transform: scale(1.12);
  box-shadow: 0 0 0 4px rgba(0, 192, 93, 0.15);
}

@media (max-width: 500px) {
  .brand-share-row {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start !important;
  }

  .share-section {
    width: 100%;
  }

  .share-section .social-icon {
    width: 30px;
    height: 30px;
    font-size: 14px
  }
}

.meta-label {
  color: #cfcfcf;
  font-weight: 600;
  margin-right: 6px;
}

.meta-value,
.tags-row .tag {
  color: #9ea3a8;
}

.tag-list {
  display: inline-flex;
  gap: 6px;
  flex-wrap: wrap;
  letter-spacing: 0.3px;
  line-height: 1.9;
}

.tag-link {
  color: #cfcfcf;
  text-decoration: underline;
  text-decoration-color: #808080;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}

.tag-link:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

/* row spacing */
.buy-row {
  gap: 16px !important;
}

.quantity-pill {
  background: #fff;
  border-radius: 6px;
  padding: 4px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
}

.quantity-pill .qty-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 0;
  background: #0f0f0f;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.12s ease, opacity 0.12s ease;
}

.quantity-pill .qty-btn i {
  font-size: 14px;
  line-height: 1;
}

.quantity-pill .qty-btn:hover {
  transform: translateY(-1px);
}

.quantity-pill .qty-input {
  width: 40px;
  border: 0;
  background: transparent;
  color: #222;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  outline: none;
  padding: 0;
}

.btn-add-cart {
  height: 44px;
  border: 0;
  border-radius: 6px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  transition: transform 0.12s ease, box-shadow 0.12s ease,
    background-color 0.12s ease;
}

.btn-add-cart:hover {
  background: #00a64f;
  /* transform: translateY(-1px); */
  box-shadow: 0 8px 20px rgba(0, 192, 93, 0.18);
}

.btn-add-cart i {
  font-size: 14px;
}

.wishlist-btn-compact {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  border: 0;
  background: #1f1f1f;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.12s ease, background-color 0.12s ease,
    box-shadow 0.12s ease;
}

.wishlist-btn-compact:hover {
  background: var(--border-muted);
  transform: translateY(-1px);
  box-shadow: 0 0 0 4px rgba(0, 192, 93, 0.12);
}

@media (max-width: 576px) {
  .buy-row {
    gap: 10px !important;
    flex-wrap: wrap;
  }

  .btn-add-cart {
    height: 42px;
  }

  .quantity-pill {
    height: 42px;
  }

  .quantity-pill .qty-btn {
    width: 34px;
    height: 34px;
  }
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.qty-input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

/* Bulk Discount Section */
.bulk-discount-section {
  margin-top: 40px;
}

.discount-card {
  background: var(--bg-card);
  border: 1px solid #1f1f1f;
  border-radius: 8px;
  padding: 20px 18px;
  text-align: left;
  transition: all 0.25s ease;
  position: relative;
  display: block;
  cursor: pointer;
  height: 100%;
}

.discount-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.discount-card.active {
  border-color: var(--accent);
  box-shadow: 0 0 12px rgba(0, 192, 93, 0.25);
}

/* Top row: radio + save badge */
.discount-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

/* Radio button style */
.discount-top input[type="radio"] {
  width: 20px;
  height: 20px;
  appearance: none;
  border: 2px solid var(--accent);
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
  position: relative;
  transition: all 0.25s ease;
}

.discount-top input[type="radio"]:checked::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
}

.discount-top input[type="radio"]:checked {
  background-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 192, 93, 0.2);
}

/* Save badge */
.badge-save {
  background: #dcfce7;
  color: #008236;
  font-size: 13px;
  font-weight: 400;
  border-radius: 6px;
  padding: 4px 10px;
}

.discount-text {
  color: #ccc;
  font-size: 15px;
  line-height: 1.6;
  min-height: 48px;
  margin-bottom: 40px;
}

.price-area {
  margin-top: auto;
}

.discount-card .old-price {
  color: #3c3c3c;
  text-decoration: line-through;
  margin: 0;
}

.discount-card .new-price {
  color: var(--accent);
  font-weight: 700;
  font-size: 22px;
  margin: 4px 0 0;
}

.discount-card .per-item {
  font-size: 13px;
  color: #6a7282;
  font-weight: 400;
}

/* Responsive */
@media (max-width: 992px) {
  .discount-card {
    padding: 16px;
  }
}

@media (max-width: 576px) {
  .bulk-discount-section .col-md-4 {
    width: 100%;
  }

  .discount-card {
    margin-bottom: 12px;
  }

  .discount-card .new-price {
    font-size: 18px;
  }
}

/* Tabs */

/* tabs bar */
.product-tabs-block .tabs-bar {
  background: var(--bg-card);
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  justify-content: center;
  gap: 28px;
  box-shadow: var(--card-shadow);
}

.product-tabs-block .tab-link {
  border: 0;
  background: transparent;
  color: #9ea3a8;
  font-weight: 600;
  letter-spacing: 0.2px;
  padding: 10px 16px;
  position: relative;
}

.tab-pane,
.green-checks li {
  color: #808080;
}

.product-tabs-block .tab-link.active {
  color: var(--accent);
}

.product-tabs-block .tab-link.active::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: -10px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* video card */
.video-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-table-tap);
}

.video-card img {
  width: 100%;
  display: block;
}

.play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    background-color 0.15s ease;
}

.play-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 0 0 8px rgba(0, 192, 93, 0.18);
}

/* ========== FREQUENTLY BOUGHT TOGETHER SECTION ========== */
.frequently-bought-section {
  background: var(--bg-section);
  color: var(--text);
  border-radius: 4px;
  padding: 60px 0;
}

.fbt-wrapper {
  background-color: var(--bg-card);
  border-radius: 8px;
  padding: 40px 40px 40px 40px;
}

@media (max-width: 768px) {
  .fbt-wrapper {
    padding: 24px 20px 40px 20px;
  }
}

.frequently-bought-section .section-subtitle {
  color: var(--muted-strong);
  font-size: 15px;
  margin-bottom: 40px;
}

.fbt-card {
  background: var(--bg-card);
  border: 1px solid #1f1f1f;
  border-radius: 4px;
  text-align: left;
  padding: 25px 18px;
  position: relative;
  transition: all 0.25s ease;
}

.fbt-card.active {
  border-color: var(--accent);
  box-shadow: 0 0 10px rgba(0, 192, 93, 0.3);
}

/* Checkbox style */
.fbt-card input[type="checkbox"] {
  position: absolute;
  top: 14px;
  left: 20px;
  width: 22px;
  height: 22px;
  appearance: none;
  border: none;
  border-radius: 6px;
  background-color: #0a0a0a;
  box-shadow: 0 0 0 2px var(--accent) inset;
  cursor: pointer;
  transition: all 0.25s ease;
}

.fbt-card input[type="checkbox"]:checked {
  background-color: var(--accent);
  box-shadow: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.173 12.414l-3.88-3.88 1.414-1.414L6.173 9.586l6.12-6.12 1.414 1.414-7.534 7.534z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px;
}

.fbt-card {
  padding-top: 40px;
}

.fbt-image {
  background: var(--bg-image);
  border-radius: 4px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fbt-image img {
  width: 100%;
  height: 220px;
  border-radius: 4px;
}

/* Title */
.fbt-title {
  color: var(--bo);
  font-size: 15px;
  font-weight: 600;
  margin-top: 18px;
}

/* Price + Rating inline */
.fbt-price-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.fbt-price {
  color: var(--accent);
  font-weight: 700;
  font-size: 15px;
}

.fbt-rating i {
  color: #ffb400;
  font-size: 14px;
}

.fbt-rating span {
  color: #aaa;
  font-size: 13px;
}

/* Divider and Summary */
.divider {
  border-top: 1px solid var(--border-muted);
}

.fbt-summary {
  margin-top: 20px;
}

.total-line {
  font-size: 18px;
  color: var(--muted-strong);
  font-weight: 600;
}

.total-price {
  color: #fff;
  font-size: 28px;
  font-weight: 400;
  margin-right: 6px;
}

.old-total {
  color: var(--muted-strong);
  text-decoration: line-through;
  font-size: 14px;
}

.discount-text {
  color: var(--muted-strong);
  font-size: 14px;
  margin-top: 4px;
}

/* Button */
.btn-add-bundle {
  background: var(--accent);
  border: none;
  border-radius: 6px;
  color: #fff;
  font-weight: 700;
  padding: 10px 24px;
  transition: all 0.25s ease;
}

.btn-add-bundle:hover {
  background: #00a14d;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 192, 93, 0.25);
}

/* Responsive Design */
@media (max-width: 992px) {
  .fbt-card {
    padding: 16px;
  }
}

@media (max-width: 768px) {
  .fbt-card {
    margin-bottom: 16px;
  }

  .frequently-bought-section .row {
    flex-direction: column;
  }

  /* 
  .col-6.col-md-3 {
    width: 100%;
  } */

  .fbt-card input[type="checkbox"] {
    top: 12px;
    left: 12px;
  }

  .fbt-title {
    font-size: 14px;
  }

  .fbt-price-rating {
    flex-wrap: wrap;
    gap: 6px;
  }

  .fbt-summary {
    text-align: center;
  }

  .btn-add-bundle {
    width: 100%;
  }
}

/* feature banner */
.feature-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(0, 192, 93, 0.55);
  border-radius: 6px;
  background: transparent;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  border: 1px solid rgba(0, 192, 93, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.feature-title {
  color: var(--bo);
  font-weight: 600;
}

.feature-text {
  color: #9ea3a8;
  font-size: 14px;
}

.feature-split {
  flex: 0 0 1px;
  height: 44px;
  background: rgba(0, 192, 93, 0.35);
  border-radius: 1px;
}

.green-checks {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  display: grid;
  gap: 10px;
}

.green-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #cfd3d6;
}

.green-checks i {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  flex-shrink: 0;
}

.info-list {
  display: grid;
  grid-template-columns: 160px 1fr;
  column-gap: 22px;
  row-gap: 14px;
}

.info-list dt {
  color: #cfcfcf;
  font-weight: 600;
}

.info-list dd {
  margin: 0;
  color: #9ea3a8;
}

.info-list .tag-list {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
}

.info-list .tag {
  color: #9ea3a8;
}

.info-list .tag-link {
  color: #cfcfcf;
  text-decoration: underline;
  text-decoration-color: #808080;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
}

.info-list .tag-link:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

/* reviews */
.reviews-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.review-item {
  display: flex;
  gap: 14px;
}

.review-sep {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 18px 0;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.review-body {
  flex: 1;
}

.review-head {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #9ea3a8;
}

.review-head .name {
  color: #cfcfcf;
  font-weight: 600;
  margin-right: 6px;
}

.review-head .time {
  margin-left: auto;
  font-size: 12px;
  color: #9ea3a8;
}

.review-text {
  color: #bfc3c7;
  margin: 6px 0 0;
}

/* responsive */
@media (max-width: 768px) {
  .product-tabs-block .tabs-bar {
    gap: 16px;
    padding: 8px 10px;
  }

  .product-tabs-block .tab-link {
    padding: 8px 10px;
    font-size: 14px;
  }

  .feature-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .feature-split {
    display: none;
  }

  .info-list {
    grid-template-columns: 120px 1fr;
  }
}



/*==================== wish list section================= */

.wishList-section {
  padding: var(--section-padding);
  background-color: var(--bg-section);
}

.wishlist_title {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  color: var(--bo);
  margin: 0 0 80px 0;
}

.wishlist_container {
  border: 1px solid #424242;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  background-color: var(--bg-card);
}

.wishlist_header {
  padding: 16px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--btn-text);
  text-transform: uppercase;

}

.wishlist-product_info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.product-row {
  padding: 16px 24px;
  border-top: 1px solid var(--border-muted);
}


.product_info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}



.row-header {
  padding: 0 24px;
}

.row-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border-muted);
}

.product-name {
  font-size: 16px;
  font-weight: 400;
  color: var(--bo);
  padding-left: 20px;
  text-transform: capitalize;
}

.stock-statues {
  display: flex;
  align-items: center;
  height: 100%;
}

.stock-statues span {
  font-size: 14px;
  font-weight: 400;
  color: var(--accent);
  background-color: rgba(106, 200, 109, 0.2);
  padding: 4px 8px;
  border-radius: var(--border-radius);
  text-transform: capitalize;
}

.actions {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.actions .addBtn {
  background-color: var(--accent);
  border: 0;
  color: var(--bo);
  border-radius: 43px;
  padding: 14px 32px;
  text-transform: capitalize;
}

.actions .btn-disabled {
  background-color: #ffffff;
  color: #b3b3b3;
  cursor: not-allowed;
  box-shadow: var(--card-shadow);
}

.actions .removeBtn {
  background-color: var(--bg);
  color: var(--muted);
  border-radius: 50%;
  border: 1px solid var(--muted);
  width: 30px;
  height: 30px;
  font-size: 12px;
  font-weight: 300;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px;
  box-shadow: var(--card-shadow);
}

.social-media {
  display: flex;
  align-items: center;
  gap: 5px;
}

.social-media a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-decoration: none;
  color: #424242;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
}

.social-media a:hover {
  background-color: var(--accent);
  color: var(--bo);
}

.outStock-theme span {
  background-color: rgba(234, 75, 72, 0.2);
  color: #ea4b48;
  text-transform: capitalize;
}

.stock-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.addBtn-mobile {
  background-color: var(--accent);
  border: 0;
  color: var(--bo);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 12px;
  font-weight: 300;
  display: none;
  justify-content: center;
  align-items: center;
}

@media (min-width: 300px) and (max-width: 700px) {
  .product-row {
    padding: 12px 0px;
  }

  .wishList-section {
    padding: 48px 20px;
  }

  .actions .addBtn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .price-details {
    display: flex;
    flex-direction: column;
    align-items: start;
  }

  .price-details .priceBeforeSale {
    margin: 0;
  }

  .wishlist-product_info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 5px;
  }

  .product-name {
    font-size: 12px;
    padding: 0;
  }

  .price-details span,
  .price-details .priceBeforeSale {
    font-size: 14px;
  }

  .actions .addBtn {
    display: none;
  }

  .actions .addBtn-mobile {
    display: flex;
  }
}

@media (max-width:450px) {
  .stock-details {
    flex-direction: column;
  }

  .row-header {
    padding: 0 12px;
  }

  .product-name {
    padding: 0;
    text-align: center;
  }

  .wishlist_header {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
  }

  .price-details {
    align-items: center;
  }
}

@media (min-width: 650px) and (max-width: 992px) {
  .wishList-section {
    padding: 48px 16px;
  }

  .actions .addBtn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .price-details .priceBeforeSale {
    margin: 0;
  }

  .wishlist-product_info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }

  .product-name {
    padding: 0;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .wishList-section {
    padding: 48px 20px;
  }
}

/* login and register */
.auth-wrapper {
  position: relative;
  min-height: calc(100vh - 240px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-section);
  overflow: hidden;
  padding: 30px;
}

.auth-wrapper::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 360px;
  height: 360px;
  background: url("../img/Logomark\ white@1.png") no-repeat bottom right;
  background-size: contain;
  opacity: 1;
  z-index: 0;
}

[data-theme="dark"] .auth-wrapper::after {
  background: url("../img/Logomark Dark.png") no-repeat bottom right;
  background-size: contain;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 992px) {
  .auth-wrapper::after {
    width: 280px;
    height: 280px;
    right: 20px;
    bottom: 20px;
  }
}

@media (max-width: 576px) {
  .auth-wrapper::after {
    width: 200px;
    height: 200px;
    opacity: 0.6;
    right: 10px;
    bottom: 10px;
  }
}

.auth-box {
  position: relative;
  z-index: 2;
  background-color: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--bg-table-tap);
  padding: 60px;
  width: 520px;
  max-width: 100%;
  box-shadow: 0 0 40px rgba(0, 192, 93, 0.15), 0 6px 25px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s ease;
}

.auth-box:hover {
  box-shadow: 0 0 50px rgba(0, 192, 93, 0.25), 0 8px 30px rgba(0, 0, 0, 0.2);
}

.auth-logo {
  height: 40px;
  margin-bottom: 20px;
  transition: 0.3s ease;
  margin-left: auto;
  margin-right: auto;
}

.auth-title {
  color: var(--text-secondary);
}

.auth-logo:hover {
  transform: scale(1.05);
}

.auth-input {
  background: transparent;
  border: 1px solid #333;
  color: var(--bo);
  padding: 16px 18px;
  border-radius: 10px;
  font-size: 16px;
  height: 54px;
}

.auth-input::placeholder {
  color: #999;
}

.auth-wrapper .btn-accent {
  background-color: var(--accent);
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 17px;
  padding: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 192, 93, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  color: #000;
}

.auth-wrapper .btn-accent:hover {
  background-color: #00a651;
}

.auth-text {
  color: var(--border-soft);
  font-size: 15px;
}


.auth-link {
  color: var(--border-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
}

.auth-link:hover {
  text-decoration: underline;
  color: var(--border-soft);
}

.auth-text .auth-link {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
}

.auth-text .auth-link:hover {
  text-decoration: underline;
}

.form-check-label {
  color: var(--border-soft);
  margin-left: 2px;
  font-size: 14px;
  font-weight: 400;
}


.form-check-input {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid var(--text-secondary);
  border-radius: 6px;
  background: transparent;
}

.form-check-input:focus {
  box-shadow: none;
  outline: none;
  border: 2px solid var(--text-secondary);
}

.form-check-input:checked {
  background: transparent;
  position: relative;
}



.form-check-input:checked::after {
  content: "\F633";
  font-family: "bootstrap-icons";
  color: var(--bo);
  font-size: 13px;
  font-weight: normal;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 992px) {
  .auth-wrapper::after {
    width: 360px;
    height: 360px;
  }

  .auth-box {
    padding: 45px 30px;
    width: 90%;
  }
}

@media (max-width: 576px) {
  .auth-wrapper::after {
    width: 280px;
    height: 280px;
  }

  .auth-box {
    padding: 35px 20px;
  }
}

[data-theme="dark"] .theme-dark {
  display: inline-block !important;
}

[data-theme="dark"] .theme-light {
  display: none !important;
}

[data-theme="light"] .theme-light {
  display: inline-block !important;
}

[data-theme="light"] .theme-dark {
  display: none !important;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.auth-box {
  animation: fadeInUp 0.8s ease-out forwards;
}

/* ===== RESPONSIVE FIX FOR AUTH SECTION ===== */
@media (max-width: 1200px) {
  .auth-wrapper {
    min-height: calc(100vh - 230px);
    padding: 40px 0;
  }

  .auth-wrapper::after {
    width: 320px;
    height: 320px;
    right: 20px;
    bottom: 0;
    opacity: 0.95;
  }
}

@media (max-width: 992px) {
  .auth-wrapper {
    min-height: calc(100vh - 220px);
    padding: 40px 0;
  }

  .auth-wrapper::after {
    width: 260px;
    height: 260px;
    right: 15px;
    bottom: 0;
    opacity: 0.9;
  }
}

@media (max-width: 768px) {
  .auth-wrapper {
    min-height: calc(100vh - 200px);
    padding: 30px 0;
  }

  .auth-wrapper::after {
    width: 200px;
    height: 200px;
    right: 10px;
    bottom: 0;
    opacity: 0.8;
  }
}

@media (max-width: 576px) {
  .auth-wrapper {
    min-height: auto;
    padding: 50px 0 70px;
  }

  .auth-wrapper::after {
    width: 160px;
    height: 160px;
    right: 8px;
    bottom: 0;
    opacity: 0.7;
  }
}

/* ==================== used devices page ============================= */
.apply-used-top {
  width: 350px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-weight: 600;
  padding: 12px 0;
  border-radius: 6px;
  transition: all 0.3s ease;
  background: var(--bg-card);
  justify-content: center;
}

.apply-used-top:hover {
  background: var(--accent);
  color: #fff;
}

.apply-used-top i {
  font-size: 14px;
}

.shop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 8px rgba(0, 192, 93, 0.3);
}

.shop-card .icons {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.shop-card .icons i {
  color: #fff;
  padding: 8px;

  cursor: pointer;
  transition: 0.3s;
}

.product-info h6 {
  color: #000000;
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 5px;
}

.product-info .price {
  display: flex;
  align-items: center;
  gap: 8px;
}

.price .after {
  color: var(--accent);
  font-weight: 700;
}

.price .before {
  text-decoration: line-through;
  color: #aaa;
  font-size: 14px;
}

.rating i {
  color: #fbc02d;
  font-size: 14px;
}

.used-card {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  padding: 22px;
  transition: 0.3s;
  color: #fff;
  position: relative;
}

.used-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 10px rgba(0, 192, 93, 0.25);
}

.used-card .product-img {
  background: var(--bg-image);
  border-radius: 4px;
  padding: 20px;
  position: relative;
}

.used-card .product-img img {
  max-height: 210px;
  object-fit: contain;
}

.used-card .status-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: #121212;
  font-size: 13px;
  padding: 5px 12px;
  border-radius: 4px;
  font-weight: 600;
}

.used-card .icons {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;

}

.status-tag.reserved {
  background: #878787;
  color: #121212;
}

.used-card .icons i {
  color: var(--bo);
  padding: 8px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.used-card .icons i:hover {
  color: var(--accent);
}

.used-card .product-title {
  color: var(--bo);
  font-size: 16px;
  font-weight: 600;
}

.used-card .condition {
  color: #777777;
  font-size: 14px;
}

.used-card .product-desc {
  color: #777777;
  font-size: 13px;
  line-height: 1.5;
}

.used-card .price {
  display: flex;
  align-items: center;
  gap: 8px;
}

.price .after {
  color: var(--accent);
  font-weight: 700;
}

.price .before {
  text-decoration: line-through;
  color: #777777;
  font-size: 14px;
}

/* === MODAL REFINEMENTS === */
.modal-backdrop.show {
  opacity: 0.85 !important;
  background-color: #000 !important;
}

.modal-dialog.modal-xxl {
  max-width: 1200px;
}

.product-modal-content {
  background-color: var(--bg-section) !important;
  border-radius: 8px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 1.6;
}

.product-media {
  border-radius: 10px;
}

.main-image {
  background-color: var(--bg-image);
  border-radius: 10px;
}

.product-thumbs img {
  background-color: var(--bg-image);
  padding: 6px;
  border-radius: 6px;
  width: 70px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-thumbs img.active {
  border: 1.5px solidvar(--accent);
}

.status-tag.sale {
  background-color: var(--accent);
  color: #fff;
  font-size: 13px;
  padding: 5px 12px;
  border-radius: 6px;
  font-weight: 600;
}

.product-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--bo);
}

.price .new-price {
  font-size: 22px;
  color: var(--accent);
  font-weight: 600;
  margin-right: 10px;
}

.price .old-price {
  color: #777;
  text-decoration: line-through;
  font-size: 15px;
  margin-right: 10px;
}

.discount-tag {
  color: #fff;
  background-color: #e53935;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}

.qty-btn {
  background-color: var(--bg-table-tap);
  border: none;
  color: #fff;
  padding: 6px 10px;
  cursor: pointer;
}

.qty-input {
  width: 45px;
  text-align: center;
  border: none;
  background: #0e0e0e;
  color: #fff;
}

.btn-add-cart {
  background-color: var(--accent);
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  transition: 0.3s;
}

.btn-add-cart:hover {
  background-color: #00a04d;
}

.wishlist-btn-compact {
  background: var(--bg-table-tap);
  border: none;
  color: var(--muted);
  border-radius: 8px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--card-shadow);
}

.divider {
  border-color: var(--border-muted);
}

.product-condition-line {
  color: #ccc;
  font-size: 14px;
}

.product-condition-line .condition strong {
  color: #fff;
  font-weight: 500;
}

.product-condition-line .dot-separator {
  width: 5px;
  height: 5px;
  background-color: #888;
  border-radius: 50%;
  display: inline-block;
}

.product-condition-line i {
  font-size: 14px;
  color: var(--accent);
}

/* === Used Device Modal Styling === */

.modal.show {
  padding-right: 14px;
  padding-left: 14px;
}

.modal-content {
  background-color: var(--bg);
  border-radius: 10px;
  border: 1px solid var(--border-muted);
  color: var(--muted);
  padding: 15px 20px !important;
}


.modal-content .modal-header h6 {
  font-size: 16px;
  color: var(--muted);
}


.modal-content .modal-header .btn-close {
  filter: invert(1);
}


.modal-content .form-control.dark-input {
  background-color: var(--surface-secondary);
  border: 1px solid var(--border-muted);
  color: var(--bo);
  border-radius: 5px;
  padding: 10px;
  font-size: 14px;
}


.modal-content .form-control.dark-input::placeholder {
  color: var(--muted);
}


.modal-content .form-control.dark-input:focus {
  background-color: var(--surface-secondary);
  border-color: var(--accent);
  box-shadow: 0 0 0 0.1rem rgba(0, 192, 93, 0.25);
  color: var(--bo);
}

.modal-content label.form-label {
  display: block;
}


.modal-content .photo-upload {
  background-color: var(--bg);
  border: 1px solid var(--border-muted);
  border-radius: 6px;
  padding: 35px 10px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}


.modal-content .photo-upload:hover {
  border-color: var(--accent);
}

.modal-content .photo-upload i {
  font-size: 28px;
  color: #ccc;
  display: block;
}


.modal-content .photo-upload .file-input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}


.modal-content .apply-btn {
  background-color: var(--accent);
  border: none;
  font-weight: 600;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #000000;
  font-size: 16px;
}


.modal-content .apply-btn:hover {
  background-color: #00a04d;
}

/* === Compress modal inner spacing === */


.modal-content .modal-body {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}


.modal-content .row.g-3 {
  --bs-gutter-y: 0.75rem;
  --bs-gutter-x: 0.75rem;
}


.modal-content .form-control.dark-input {
  padding: 7px 10px;
  font-size: 13px;
}


.modal-content label.form-label {
  margin-top: 2px;
  margin-bottom: 3px;
  font-size: 14px;
  color: var(--muted) !important;
}


.modal-content .photo-upload {
  padding: 20px 10px;
  color: #a1a1a1;
}


.modal-content .apply-btn {
  padding: 8px 0;
  font-size: 14px;
}

/* ===== SETTINGS SECTION ===== */
.settings-section {
  background-color: var(--bg-section);
  color: #fff;
  font-family: "Poppins", sans-serif;
  padding: var(--section-padding);
}

.settings-sidebar {
  background-color: var(--bg-section);
  border-radius: 8px;
  min-height: auto;
  border: 1px solid var(--border-muted);
}



/* ===== Account Settings Card ===== */

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .settings-card .d-flex {
    flex-direction: column-reverse;
    text-align: center;
  }

  .profile-img {
    margin: 0 auto;
  }
}

.save-btn {
  background-color: var(--accent);
  border: none;
  font-weight: 600;
}

.save-btn:hover {
  background-color: #00a04d;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .settings-sidebar {
    margin-bottom: 20px;
  }

  .settings-section {
    padding: 48px 16px;
  }
}

@media (max-width: 576px) {
  .settings-card {
    padding: 15px;
  }

  .settings-card .section-title {
    font-size: 15px;

  }

  .settings-nav li a {
    font-size: 14px;
    padding: 8px 10px;
  }
}

/* ===== FINAL ACCOUNT SETTINGS DESIGN ===== */
.account-settings-final {
  background-color: var(--bg-section);
  border: 1px solid var(--border-muted);
  border-radius: 8px;
  color: #fff;
  padding: 35px 40px;
  max-width: 100%;
}

.account-settings-final .account-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--bo);
  border-bottom: 1px solid var(--border-muted);
  padding-bottom: 10px;
}

.account-settings-final .form-label {
  color: #fafafa;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
}

.account-settings-final .dark-input {
  background-color: var(--input-bg) !important;
  border: 1px solid var(--border-muted) !important;
  color: #fff !important;
  border-radius: 6px;
  font-size: 14px;
  padding: 9px 10px;
  height: 45px;
}

.account-settings-final .dark-input:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 0.1rem rgba(0, 192, 93, 0.25);
}

.account-settings-final .save-btn {
  background-color: var(--accent);
  border: none;
  font-weight: 600;
  border-radius: 5px;
  font-size: 14px;
  padding: 8px 20px;
  transition: 0.3s;
  color: #0d0d0d;
}

.account-settings-final .save-btn:hover {
  background-color: #00a04d;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .account-settings-final form {
    flex-direction: column;
  }

  .account-settings-final .col-lg-4 {
    margin-top: 25px;
  }
}

/* ===== Image + Button Centered and Larger ===== */
.account-settings-final .col-lg-4 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  min-height: 100%;
}

.profile-img-final {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-img-final:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(0, 192, 93, 0.3);
}

.choose-btn-final {
  color: var(--accent) !important;
  font-weight: 500;
  font-size: 15px;
  transition: 0.3s;
  border-radius: 6px;
  padding: 9px 22px;
  background: transparent;
  border-color: var(--border-muted);
}

.choose-btn-final:hover {
  background-color: var(--accent) !important;
  color: #fff !important;
  box-shadow: 0 0 10px rgba(0, 192, 93, 0.3);
}

/* ===== Billing + Change Password Styling ===== */

.account-settings-final select.dark-input {
  color: #fff;
  background-color: var(--surface-secondary) !important;
  border: 1px solid var(--border-muted) !important;
}

.account-settings-final select.dark-input option {
  background-color: var(--surface-secondary);
  color: #fff;
}

.account-settings-final .text-muted {
  color: #888 !important;
  font-size: 12px;
}

.account-settings-final i.fa-eye {
  cursor: pointer;
  font-size: 15px;
  color: #666;
  transition: 0.3s;
}

.account-settings-final i.fa-eye:hover {
  color: var(--accent);
}

input.dark-input,
input.dark-input:disabled,
input.dark-input[readonly],
textarea.dark-input {
  color: #666666 !important;
  -webkit-text-fill-color: #666666 !important;
}

input.dark-input::placeholder,
textarea.dark-input::placeholder {
  color: #666666 !important;
  opacity: 1;
}


/* =============== order details ======================= */

.order-details {
  padding: var(--section-padding);
  background-color: var(--bg-section);
}




.order-details .main-content {
  border: 1px solid var(--border-muted);
  border-radius: 8px;
}

.order-header-info {
  display: flex;
  justify-content: center;
  align-items: center;
}

.order-header {
  padding: 16px 24px;
  border-bottom: 2px solid #E5E5E5;
}

.order-header-info h2 {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-right: 8px;
  margin-bottom: 0;
}

.order-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.order-header-info .order-date,
.order-header-info .order-products {
  font-size: 14px;
  font-weight: 400;
  color: #4D4D4D;

}

.order-date {
  padding-right: 8px;
}


.separator {
  font-size: 30px !important;
  display: inline-block;
  padding-right: 8px;
  font-weight: 400;
  color: #4D4D4D;
}


.back-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
}

.order-info-row {
  margin: 23px;
}


.info-card-row {
  display: flex;
  border: 1px solid var(--border-muted);
  border-radius: 6px;
  overflow: hidden;

}


.info-card-row .col-md-6:first-child {
  border-right: 1px solid var(--border-muted);
}


.info-card {
  width: 100%;
}


.info-card-row .info-title {
  font-size: 14px;
  font-weight: 500;
  color: #999999;
  text-transform: uppercase;
  margin-bottom: 8px;
  padding: 18px;
  border-bottom: 1px solid var(--border-muted);
}

.info-card-row .info-name {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-secondary);
  padding: 0 18px;
  margin: 10px 0;

}

.email-wrapper,
.phone-wrapper {
  padding: 0 18px;
}

.email-wrapper span,
.phone-wrapper span {
  font-size: 12px;
  color: #999999;
  font-weight: 500;
}

.email-wrapper p,
.phone-wrapper p {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
}


.info-card-row .info-address {
  font-size: 14px;
  font-weight: 400;
  color: #B3B3B3;
  padding: 0 18px;
}

.summary-card {
  border: 1px solid var(--border-muted);
  border-radius: 6px;
}

.summary-header {
  border-bottom: 1px solid var(--border-muted);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.summary-item:first-child {
  border-right: 1px solid var(--border-muted);

}

.summary-item {
  margin: 18px;
}

.summary-item span,
.summary-item strong {
  display: block;
}

.summary-item span {
  font-size: 12px;
  font-weight: 500;
  color: #999999;
}

.summary-item strong {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
}


.summary-content {
  padding: 8px 18px;
}

.summary-content .discount {
  padding: 12px 0;
}

.summary-content .subtotal {
  padding: 12px 0;
}

.summary-content .total {
  padding: 12px 0;
}

.summary-content .total-p {
  font-size: 18px;
  color: var(--text-secondary);
}

.summary-content .total-price {
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
}

.summary-content .shipping {
  padding: 16px 0;
}

.summary-content .discount .discount-p {
  font-size: 14px;
  font-weight: 500;
  color: #4D4D4D;
}

.summary-content .discount .discount-rate {
  font-size: 14px;
  font-weight: 500;
  color: var(--bo);
}


.summary-content hr.solid {
  border: 1px solid var(--bo);
  width: 100%;
  margin: 0;
}

.order-progress {
  padding: 0 60px;
}

.order-steps {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 100%;
  margin: 50px auto;
  width: 100%;
}


.order-steps::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 30px;
  width: calc(100% - 40px);
  height: 10px;
  border-radius: 6px;
  background-color: var(--bg-active);
  z-index: 1;
}


.order-steps::after {
  content: "";
  position: absolute;
  top: 25px;
  left: 30px;
  width: calc(50% - 30px);
  height: 10px;
  border-radius: 6px;
  background-color: #00c853;
  z-index: 2;
}

.step {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.step .circle {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px dashed var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--accent);
  background-color: var(--bg);
}

.step.active .circle {
  background-color: var(--accent);
  color: #0D0D0D;
  border-style: solid;
}

.step.completed .circle {
  background-color: var(--accent);
  color: #0D0D0D;
  font-size: 24px;
  border: none;
}


.step .label {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-align: center;
}

.step.completed .label {
  color: var(--accent);
  font-weight: 600;
}


.step.active .label {
  color: var(--accent);
  font-weight: 600;
}




.order-products::-webkit-scrollbar {
  width: 2px;
  height: 5px;
}

.order-products::-webkit-scrollbar-thumb {
  background-color: #333;
  border-radius: 8px;
}

.order-products::-webkit-scrollbar-track {
  background-color: transparent;
}

.product-table thead {
  background-color: var(--bg-table-tap);

}

.product-table thead tr,
.product-table thead tr th {
  padding: 12px 19px;
  color: #4D4D4D;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.product-table tbody tr:not(:last-child) {
  border-bottom: 1px solid var(--border-muted);

}

.product-table tbody tr,
.product-table tbody tr,
td {
  padding: 12px 19px;
  font-size: 14px;
  font-weight: 400;
}


@media (max-width:400px) {
  .order-meta {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .separator {
    display: none;
  }
}

@media (max-width:500px) {
  .step .circle {
    width: 35px;
    height: 35px;
  }

  .order-steps::before {
    top: 15px;
  }

  .order-steps::after {
    top: 15px;
  }

  .step .label {
    font-size: 11px;
    padding: 0 3px;
  }
}



@media (max-width:600px) {
  .order-progress {
    padding: 0 20px;
  }

  .order-header-info {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .order-meta .separator:first-child {
    display: none;
  }

  .order-header-info h2 {
    font-size: 18px;
  }

  .back-link {
    font-size: 14px;
  }

}


@media (max-width: 768px) {
  .info-card-row {
    flex-direction: column;
  }

  .info-card-row .col-md-6:first-child {
    border-right: none;
    border-bottom: 1px solid var(--border-muted);
  }

  .product-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

@media (max-width:992px) {
  .order-details {
    padding: 48px 16px;
  }
}


@media (max-width:1200px) {
  .order-info-row .col-xl-4.col-12 {
    padding: 0;
    margin-top: 20px;
  }

  .info-card-row {
    height: fit-content !important;
  }
}


/* =================== history section ================ */
.orderHistory-section {
  padding: var(--section-padding);
  background-color: var(--bg-section);
}

.table-wrapper {
  overflow-x: auto;
  border: 1px solid var(--border-muted);
  border-radius: var(--border-radius);
}

table.history-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: auto;
  background-clip: padding-box;
}

table.history-table th,
table.history-table td {
  border: none;
  background: transparent;
  color: inherit;
  white-space: nowrap;

}

.history-table .table-heading th {
  background-color: transparent !important;
  color: #CCCCCC !important;
  font-size: 20px;
  font-weight: 500;
  text-align: left;
  padding: 16px 22px;
  border-bottom: 1px solid var(--border-muted);
}

table.history-table thead tr:not(.table-heading) {
  background-color: var(--bg-active);
}

table.history-table thead th {
  color: #4D4D4D;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 12px 22px;


}

table.history-table tbody tr td {
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  padding: 12px 24px;
}


table.history-table tbody tr td a {
  text-decoration: none;
  color: var(--accent);
}

table.history-table tfoot tr td {
  padding: 32px 0;
}

.table-pagination .pagination-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 0;
  background-color: var(--bg);
  color: #666666;
  font-weight: 500;
  margin-right: 10px;
}

.table-pagination .pagination-btn.active {
  background-color: var(--accent);
  color: var(--bg);
}

.table-pagination .pagination-btn.prev,
.table-pagination .pagination-btn.next {
  border: 1px solid var(--border-muted);
  color: var(--bo);
}

.table-pagination .btn-disabled {
  background-color: var(--bg-table-tap);
  border: 1px solid var(--bg-table-tap) !important;
  color: var(--bo);
}



.table-wrapper::-webkit-scrollbar {
  width: 2px;
  height: 5px;
}

.table-wrapper::-webkit-scrollbar-thumb {
  background-color: #333;
  border-radius: 8px;
}

.table-wrapper::-webkit-scrollbar-track {
  background-color: transparent;
}


@media (max-width: 768px) {

  .history-table th,
  .history-table td {
    font-size: 12px;
    padding: 8px 12px;
  }

}

@media (max-width:992px) {
  .orderHistory-section {
    padding: 48px 16px;
  }
}











/* ================= checkout section ========================= */



.checkout-section {
  padding: var(--section-padding);
  background-color: var(--bg-section);
}


.checkout-form label {
  font-size: 14px;
  font-weight: 400;
  color: var(--bo);
  display: block;
  margin: 8px 0;
}

.checkout-form input {
  border: 1px solid #3C3C3C;
  border-radius: 6px;
  background-color: var(--bg-card);
  width: 100%;
  padding: 14px 16px;
  color: #818181;
}

.checkout-form input::placeholder {
  color: #818181;
}

.checkout-form input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 0.1rem rgba(0, 192, 93, 0.25);
}

.checkout-form select {
  appearance: none;
  border: 1px solid #3C3C3C;
  border-radius: 6px;
  background-color: var(--bg-card);
  width: 100%;
  padding: 14px 16px;
  color: #818181;
}

.checkout-form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 0.1rem rgba(0, 192, 93, 0.25);
}

.select-wrapper {
  position: relative;
}

.select-wrapper i {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  color: var(--bo);
  pointer-events: none;
}

.delivery-options {
  margin-top: 32px;
}

.delivery-method-title {
  font-size: 24px;
  font-weight: 500;
  color: var(--bo);
  margin-bottom: 26px;
}


.delivery-card {
  width: 100%;
  background-color: var(--bg-card);
  border: 1px solid var(--border-muted);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 42px 5px;
  position: relative;
  display: flex !important;
  justify-content: space-around;
  align-items: center;
  margin: 0 !important;
}


.delivery-card input {
  display: none;
}

.delivery-card .card-content {
  display: flex;
  align-items: center;
  margin: 10px;
  gap: 20px;
  color: #3C3C3C;
}

.delivery-card i {
  font-size: 34px;
  color: #3C3C3C;
}

.delivery-card h5 {
  margin: 0;
  color: var(--bo);
  font-weight: 600;
  margin-bottom: 4px;
}

.delivery-card p {
  font-size: 14px;
  color: #3C3C3C;
  margin-top: 5px;
  line-height: 1.4;
}


.delivery-card:has(input:checked) {
  border: 1px solid #00a651;
  box-shadow: 0 0 8px rgba(0, 166, 81, 0.3);
}

.delivery-card input:checked+.card-content i {
  color: #00a651;
}


.order-summery-wrapper {
  border: 1px solid #00a65169;
  border-radius: 8px;
  padding: 49px 24px;
  background-color: var(--bg-card);
}

.order-summery-wrapper .total .total-p {
  font-size: 16px;
  font-weight: 400;
}

.order-summery-wrapper .total .total-price {
  font-size: 18px;
  font-weight: 600;
}


.order-summery-title {
  font-size: 20px;
  font-weight: 500;
  color: var(--bo);
  padding-bottom: 12px;
}

.payment-method label {
  color: #3C3C3C;
  margin-bottom: 8px;
}


.payment-method input[type="radio"] {
  position: relative;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #CCCCCC;
  background-color: var(--bg);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 6px;
  margin-bottom: 8px;
}


.payment-method input[type="radio"]:checked {
  border-color: var(--accent);
}

.payment-method input[type="radio"]:checked::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--accent);
  border: 0;
  left: 50%;
  transform: translateX(-50%);
}


#differentAdress {
  appearance: none;
  width: 20px;
  height: 20px;
  background-color: var(--bg);
  border: 1px solid #CCCCCC;
  border-radius: var(--border-radius);
  margin-right: 8px;
  position: relative;
}


#differentAdress:checked::before {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--bo);
  font-size: 10px;
}

.check-adress-label {
  color: #4D4D4D;
  font-size: 14px;
}


.place-order-btn {
  width: 100%;
  color: var(--bg);
  background-color: var(--accent);
  border: 0;
  padding: 16px 0;
  border-radius: 43px;
  font-size: 16px;
  font-weight: 600;
  margin-top: 24px;
}

@media (min-width:1400px) and (max-width:1600px) {
  .delivery-card h5 {
    font-size: 16px;
  }
}

@media (max-width:1400px) {
  .order-summery-wrapper {
    height: auto !important;
  }

  .delivery-card {
    padding: 30px 10px;
  }

}


@media (max-width:767px) {
  .checkout-section {
    padding: 48px 16px;
  }

  .delivery-card {
    padding: 30px 10px;
  }
}


@media (max-width:350px) {
  .order-summery-content .row .col-9 {
    flex-direction: column;
    gap: 10px;
  }

  .order-summery-content .row {
    margin-bottom: 15px;
  }
}

/* =================== cart section ==================== */
.cart-section {
  padding: var(--section-padding);
  background-color: var(--bg-section);
}

.cart_title {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  color: var(--bo);
  margin: 0 0 80px 0;
}

.cart-container {
  border: 1px solid var(--border-muted);
  border-radius: var(--border-radius);
  background-color: var(--bg-card);
}

.cart_header {
  padding: 16px 0;
  font-size: 14px;
  font-weight: 500;
  color: #808080;
  text-transform: uppercase;
}

.quantity {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--bo);
  border-radius: 170px;
  padding: 8px;
}

.quantity .counter {
  padding: 0 30px;
}

.quantity .increaseBtn,
.quantity .decreaseBtn {
  width: 30px;
  height: 30px;
  background-color: var(--bo);
  color: var(--bg);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0;
  font-size: 14px;
}

.returnBtn,
.updateBtn {
  padding: 14px 32px;
  background-color: #fff;
  color: #000000;
  border-radius: var(--border-radius);
  border: 0;
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
  box-shadow: var(--card-shadow);
}

.coupon-container {
  margin: 15px 0;
  border: 1px solid var(--border-muted);
  border-radius: var(--border-radius);
  padding: 20px 0;
  background-color: var(--bg-card);
}

.coupon-container .code-input {
  background-color: #fff;
  padding: 14px 24px;
  width: 100%;
  border-radius: 46px;
  border: 0;
}

.coupon-container .applyCoupon {
  position: absolute;
  background-color: var(--accent);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 46px;
  border: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: fit-content;
}


.coupon-code-p {
  font-size: 20px;
  font-weight: 500;
}


.cart-total-container {
  border: 1px solid #00a65169;
  border-radius: var(--border-radius);
  padding: 23px;
  background-color: var(--bg-card);
}

.cart-total-p {
  font-size: 20px;
  font-weight: 500;
  color: var(--bo);
}

.subtotal,
.shipping,
.total {
  padding: 20px 0;
}

.subtotal-price,
.shipping-statues,
.total-price {
  font-size: 14px;
  font-weight: 500;
  color: var(--bo);
}

.subtotal-p,
.shipping-p,
.total-p {
  font-size: 14px;
  font-weight: 500;
  color: #4D4D4D;
}

.cart-total-container hr {
  margin: 0;
}


.checkout-btn {
  background-color: var(--accent);
  color: #fff;
  border: 0;
  border-radius: var(--border-radius);
  padding: 16px 7px;
  width: 100%;
  font-weight: 600;
}

.cart-container-mobile {
  border: 1px solid var(--border-muted);
  border-radius: var(--border-radius);
}

.cart-section .product_info .image {
  margin-right: 10px;
}

@media (min-width: 992px) and (max-width: 1300px) {

  .quantity .increaseBtn,
  .quantity .decreaseBtn {
    width: 20px;
    height: 20px;
  }

  .quantity .counter {
    padding: 0 16px;
  }

  .cart-section {
    padding: 48px 20px;
  }
}

@media (min-width:767px) and (max-width:992px) {

  .quantity .increaseBtn,
  .quantity .decreaseBtn {
    width: 20px;
    height: 20px;
  }

  .quantity .counter {
    padding: 0 14px;
  }

  .subtotal {
    flex-direction: column;
    gap: 10px;
  }

  .subtotal .removeBtn {
    margin: 0;
  }

  .product_info {
    flex-direction: column;
    align-items: start;
  }
}


@media (max-width: 767px) {

  .coupon-container .coupon-code-p {
    padding: 10px 0;
  }

  .row-footer {
    padding: 16px 12px;
    border-top: 1px solid #424242;
  }

  .coupon-container .applyCoupon {
    padding: 1rem 1rem;
  }

  .cart-container .row-header {
    display: none;
  }

  .cart-row-container .product-row {
    padding: 16px 12px;
    margin-bottom: 12px;
  }

  .cart-row-container .product_info {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    width: 100%;
  }

  .cart-row-container .product_info .image {
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
  }

  .cart-row-container .product_info img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .cart-row-container .product_info .product-name {
    font-size: 18px;
    font-weight: 500;
    color: var(--text);
    flex-grow: 1;
    margin-left: 10px;
    text-align: end;
  }


  .cart-row-container .price-details span {
    font-weight: 600;
    color: var(--text);
    align-items: start;
    font-size: 18px;
  }

  .cart-row-container .subtotal {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .cart-row-container .quantity {
    margin-top: 6px;
  }

  .cart-row-container .subtotal {
    margin-top: 6px;

  }

  .cart-row-container .total-price {
    font-size: 18px;
  }

  .row-footer .col-12 {
    flex-direction: column;
    gap: 8px;
    padding-top: 16px;
  }

  .returnBtn,
  .updateBtn {
    width: 100%;
  }

  .cart-container .col-sm-6.col-6 {
    width: 50%;
  }

}

@media (max-width:600px) {

  .quantity .increaseBtn,
  .quantity .decreaseBtn {
    width: 20px;
    height: 20px;
  }

  .quantity .counter {
    padding: 0 14px;
  }

  .cart-section {
    padding: 48px 20px;
  }
}

@media (max-width: 450px) {
  .cart-section .product_info .product-name {
    font-size: 14px;
  }

  .cart-row-container .price-details span {
    font-size: 14px;
  }

  .cart-row-container .total-price {
    font-size: 14px;
  }

  .cart-container .product-row {
    padding: 10px 0;
  }
}

/* ====================== page profile =================== */
.profile-page {
  padding: var(--section-padding);
  background-color: var(--bg-section);
  font-family: "Poppins", sans-serif;
}

.sidebar {
  border: 1px solid var(--border-muted);
  border-radius: var(--border-radius);
  padding: 0;
  height: fit-content;
}

.sidebar-title {
  font-weight: 600;
  color: var(--bo);
  border-bottom: 1px solid var(--border-muted);
  padding-bottom: 6px;
  font-size: 20px;
  padding: 24px 20px;
}

.sidebar-menu {
  list-style: none;
  padding: 0;
}

.sidebar-menu li {
  padding: 8px 12px;
  border-left: 1px solid transparent;
  width: 100%;
  transition: all 0.2s;
}

.sidebar-menu li.active {
  background-color: var(--bg-active);
  border-radius: 6px;
}

.sidebar-menu li.active a,
.sidebar-menu li.active a i {
  color: var(--accent);
}

.sidebar-menu li a {
  text-decoration: none;
  color: #666666;
}

.sidebar-menu li a i {
  color: var(--muted);
  padding-right: 10px;
}

.user-avatar {
  width: 113px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-card {
  border: 1px solid var(--border-muted);
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 32px 0;
}

.profile-card h4 {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-secondary);
}

.profile-card p {
  font-size: 14px;
  font-weight: 400;
  color: #808080;
}

.profile-card a {
  font-size: 16px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
}

.billing-card {
  border: 1px solid var(--border-muted);
  border-radius: var(--border-radius);
  padding: 32px 30px;
}

.billing-card .card-title {
  font-size: 14px;
  font-weight: 500;
  color: #999999;
  padding-bottom: 20px;
  text-transform: uppercase;
}

.billing-card_name {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-secondary);
  padding-bottom: 8px;
}

.billing-card_adress {
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  padding-bottom: 30px;
}

.billing-card_email {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-secondary);
  padding-bottom: 6px;
}

.billing-card_number {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-secondary);
  padding-bottom: 20px;
}

.billing-card a {
  font-size: 16px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
}

.dashboard-card {
  border: 1px solid var(--border-muted);
  border-radius: var(--border-radius);
  background-color: var(--bg-card);
  padding: 35px 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  transition: all 0.2s;
}

.dashboard-card i {
  font-size: 36px;
  color: #3C3C3C;
  padding-right: 4px;
  display: flex;
  align-items: start;
}

.dashboard-card .card-text h5 {
  font-size: 16px;
  font-weight: 500;
  color: #888888;
  padding: 0 8px;
}

.dashboard-card .card-text p {
  font-size: 14px;
  font-weight: 400;
  color: #3C3C3C;
  padding: 0 8px;
}

.dashboard-card .card-text i {
  opacity: 0;
  transition: all 0.5s;
}

.dashboard-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.dashboard-card:hover .card-text i {
  opacity: 1;
}

.dashboard-card:hover i {
  color: var(--accent);
}

.dashboard-card:hover h5 {
  color: var(--bo);
}

.dashboard-card:hover p {
  color: #828282;
}

@media (max-width:490px) {
  .dashboard .col-6 {
    width: 100%;
  }
}

@media (max-width:600px) {
  .settings-sidebar li a {
    font-size: 14px;

  }

  .settings-sidebar .sidebar-menu li:not(:first-child) {
    padding: 8px 8px;
    margin-left: 15px;
  }
}

@media (max-width:700px) {
  .dashboard-card {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding: 20px 15px;
  }

  .dashboard-card .card-text {
    text-align: center;
  }

  .billing-card_email {
    font-size: 14px;
  }

  .billing-card {
    padding: 30px 22px;
  }

  .dashboard-card .card-text h5 {
    color: var(--bo);
  }

  .dashboard-card .card-text p {
    color: #828282;
  }

  .dashboard-card i {
    margin-bottom: 8px;
  }
}

@media (max-width:767px) {
  .user-info .col-xxl-7 {
    margin-bottom: 20px;
  }

  .sidebar-menu li a i {
    padding-right: 0;
  }

  .settings-sidebar {
    border: none;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    padding: 10px !important;
  }

  .settings-sidebar .sidebar-title {
    display: none;
  }

  .settings-sidebar .settings-nav {
    display: flex;
  }

  .settings-sidebar .sidebar-menu li.active {
    border-left: transparent;
    border-bottom: 3px solid var(--accent);
    border-radius: 0;
    background-color: initial;
  }
}

@media (max-width:992px) {

  .profile-page,
  .orderHistory-section {
    padding: 48px 16px;
  }

  .sidebar-title {
    padding: 24px 12px;
    font-size: 16px;
  }
}

@media (max-width:1200px) {
  .sidebar-menu li a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .sidebar-menu li a i {
    padding-right: 0;
    padding-bottom: 10px;
  }

  .sidebar-title {
    text-align: center;
  }
}

/* ================ hiring card section */
.hiring-section {
  padding: var(--section-padding);
  background-color: var(--bg-section);
}

.hiring-heading h2 {
  font-size: 24px;
  font-weight: 500;
  color: var(--bo);
}

.hiring-heading p {
  font-size: 16px;
  font-weight: 400;
  color: var(--muted-strong);
}

.hiring-search {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 16px;
  position: relative;
}

.hiring-search .search-input {
  background-color: var(--surface-primary);
  color: #71717B;
  border: 1px solid var(--surface-strong);
  border-radius: 8px;
  padding: 8px 40px;
}

.hiring-search .search-icon {
  position: absolute;
  left: 12px;
}

.view-toggle-wrapper .view-toggle {
  background-color: var(--surface-primary);
  border: 1px solid var(--surface-strong);
  border-radius: 10px;
  padding: 4px;
  display: flex;
}

.view-toggle-wrapper .view-toggle button {
  border: 0;
  background-color: var(--surface-primary);
  color: var(--muted-strong);
  padding: 6px 10px;
  display: flex;
  gap: 10px;
}

.view-toggle-wrapper .view-toggle button.active {
  background-color: var(--surface-strong);
  border-radius: 8px;
  color: var(--bo);
}

.hiring-content {
  margin-top: 32px;
}

.hiring-filter {
  background-color: var(--bg-card);
  border: 1px solid var(--surface-strong);
  border-radius: 14px;
  padding: 24px;
}

.hiring-filter_heading p {
  color: var(--bo);
}

.hiring-filter_heading .clear-btn {
  background-color: transparent;
  border: 0;
  color: var(--muted-strong);
}

.hiring-group_title p {
  font-size: 16px;
  font-weight: 400;
  color: var(--bo);
}

.hiring-group_title h5 {
  color: var(--bo);
}

.hiring-group .filter-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hiring-group .filter-list li {
  margin-bottom: 10px;
}

.hiring-group .filter-list input[type="checkbox"] {
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: var(--border-radius);
  background-color: #fff;
  margin-right: 10px;
}

.hiring-group .filter-list input[type="checkbox"]:checked {
  background-color: var(--accent);
  position: relative;

}

.hiring-group .filter-list input[type="checkbox"]:checked+label {
  color: var(--accent);
}

.hiring-group .filter-list input[type="checkbox"]:checked::after {
  content: "\F633";
  font-family: "bootstrap-icons";
  color: #fff;
  font-size: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hiring-group .filter-list label {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted-light);
}

.salary-range-labels {
  color: var(--muted-strong);

}

.hiring-group .salary-range .custom-salary-range {
  width: 100%;
  height: 8px;
  -webkit-appearance: none;
  appearance: none;
  background: linear-gradient(to right, #00c37a 40%, #e0e0e0 40%);
  border-radius: 5px;
  outline: none;
  position: static;
}


.hiring-count {
  color: var(--muted-strong);
}

.hiring-content .product-card {
  border: 1px solid var(--surface-strong);
  border-radius: 14px;
  margin-bottom: 24px;
  position: relative;
}

.grid-view {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.list-view {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 15px;
}

.jop-badge {
  background-color: var(--accent);
  color: var(--bo);
  padding: 12px 16px;
  border-radius: 10px;
  border: 0;
  font-size: 18px;
}

.jop-type-badge,
.about-badge,
.blog-badge,
.qa-stats-badge {
  color: rgba(0, 192, 93, 1);
  background-color: rgba(0, 195, 122, 0.1);
  border: 2px solid rgba(0, 192, 93, 0.2);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 12px;
  letter-spacing: 0.3px;
  box-shadow: 0 0 4px rgba(0, 195, 122, 0.2);
  padding: 2px 8px;

}

.hiring-card_jopTitle {
  color: var(--bo);
  margin-bottom: 32px;
  margin-top: 40px;
}

.list-view .hiring-card_jopTitle {
  margin: 0px;
}


.hiring-card_jopCompany,
.hiring-card_jopDesc {
  color: var(--muted-strong);
  margin-bottom: 32px;
}


.list-view .hiring-card_jopCompany,
.list-view .hiring-card_jopDesc {
  margin-bottom: 0px;
  padding-right: 50px;
}

.jop-details {
  list-style: none;
  padding: 0;
  margin-bottom: 0;

}

.list-view .jop-details {
  display: flex;

}

.jop-details li {
  color: var(--muted-strong);
  margin-bottom: 12px;
}

.jop-details li i {
  padding-right: 8px;
}

.product-footer-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.list-view .product-footer-wrapper {
  display: flex;
  justify-content: space-between;
}

.list-view .product-footer-wrapper hr {
  display: none;
}

.list-view .jop-footer {
  gap: 10px;
}

.list-view .jops-tags {
  margin: 10px 0;
}

.jops-tags {
  gap: 10px;
  margin: 40px 0;
}

.jops-tags span {
  background-color: var(--surface-strong);
  border: 1px solid var(--border-soft);
  color: var(--muted-light);
  padding: 2px 8px;
  border-radius: 8px;
}

.jop-footer .posted-date {
  color: #71717B;

}

.jop-footer .apply-btn {
  background-color: var(--accent);
  color: var(--bo);
  padding: 8px 16px;
  border: 0;
  border-radius: 8px;
}

/*  filter hiring sidemenu */
.filter-mobile-btn {
  background-color: var(--accent);
  color: var(--bo);
  border: 0;
  border-radius: 12px;
  padding: 6px 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: none;
}

.filter-mobile-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}


.hiring-filter-offcanvas .offcanvas,
.shop-filter-offcanvas .offcanvas {
  z-index: 2000 !important;
}

.hiring-filter-offcanvas .offcanvas .offcanvas-body,
.shop-filter-offcanvas .offcanvas .offcanvas-body {
  margin: 0 5px;
}

.hiring-filter-offcanvas .offcanvas-backdrop,
.shop-filter-offcanvas .offcanvas-backdrop {
  z-index: 1999 !important;
}

.hiring-filter-offcanvas #filterOffcanvas,
.shop-filter-offcanvas #filterShopOffcanvas,
.shop-filter-offcanvas #filterDeviceOffcanvas {
  background-color: var(--bg-card);
}

.hiring-filter-offcanvas .offcanvas-header,
.shop-filter-offcanvas .offcanvas-header {
  display: flex;
  justify-content: space-between;
}

.hiring-filter-offcanvas .offcanvas-header h5,
.shop-filter-offcanvas .offcanvas-header h5 {
  color: var(--muted-light);
}

.hiring-filter-offcanvas .offcanvas-header .close-filter,
.shop-filter-offcanvas .offcanvas-header .close-filter {
  border: 1px solid var(--border-soft);
  background-color: var(--bg-card);
  color: var(--muted-light);
  border-radius: 8px;
}

.offcanvas-body::-webkit-scrollbar {
  width: 2px;
  padding: 0 10px;
}

.offcanvas-body::-webkit-scrollbar-track {
  background: transparent;
}

.offcanvas-body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
}

.offcanvas-body::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.4);
}

@media (max-width:992px) {
  .hiring-section {
    padding: 48px 16px;
  }

  .hiring-content .col-xl-3 {
    display: none;
  }

  .filter-mobile-btn {
    display: block;
    margin-bottom: 10px;
  }

}

@media (max-width:576px) {
  .list-view {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 0;
  }

  .list-view .product-footer-wrapper {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }

  .list-view .product-footer-wrapper hr {
    display: block;
  }

  .list-view .jop-details {
    flex-direction: column;
    margin-bottom: 0;
    padding: 0;
  }

  .list-view .hiring-card_jopTitle {
    margin: 40px 0 32px 0;
  }

  .list-view .hiring-card_jopCompany {
    margin: 0 0 32px 0;
  }

  .list-view .hiring-card_jopDesc {
    padding-right: 0;
    margin-bottom: 32px;
  }
}


@media (max-width:550px) {
  .hiring-search {
    grid-template-columns: 100%;
    flex-wrap: nowrap;
  }

  .hiring-search .search-icon {
    top: 15%;
  }
}

/* ============= jop page details ============= */

.jop-page-details {
  padding: var(--section-padding);
  background-color: var(--bg-section);
}

.job-actions {
  position: absolute;
  top: 0px;
  right: 0px;
}

.job-actions .icon-btn {
  border: 0;
  background-color: transparent;
  color: #71717B;
}

.job-section h4 {
  color: var(--bo);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 16px;
}

.job-section p {
  color: var(--muted-light);
  font-size: 16px;
  font-weight: 400;
}

.job-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.job-section ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
}

.job-section ul li .list-style {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--accent);
  margin-top: 8px;
  flex-shrink: 0;
}

.job-section ul li p {
  margin: 0;
  line-height: 1.6;
}

.job-section .benefit-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.similar-opportunities {
  padding: 42px 0;
}

.jop-page-details .product-card {
  border-radius: 14px;
  position: relative;
}

/* =============== job-sidebar ============= */

.job-box {
  background-color: var(--bg-card);
  border: 1px solid var(--border-muted);
  padding: 24px;
  border-radius: 14px;
  margin-bottom: 24px;
}

.job-box h4 {
  font-size: 16px;
  font-weight: 400;
  color: var(--bo);
}

.job-box ul {
  list-style: none;
  padding: 0;
}

.job-box ul li {
  padding: 16px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.job-box ul li:not(:last-child) {
  border-bottom: 1px solid var(--border-muted);
}

.job-box p {
  margin: 0;
}

.job-box ul li h5 {
  font-size: 16px;
  font-weight: 400;
  color: var(--muted-strong);
}

.job-box ul li i {
  color: var(--accent);
}

.job-box ul li p {
  font-size: 16px;
  font-weight: 400;
  color: var(--bo);
}

.job-box.about-practice .apply-btn {
  border: 0;
  border-radius: 8px;
  background-color: var(--accent);
  color: var(--bo);
  width: 100%;
  padding: 8px 0;
  margin-top: 40px;
}

.job-box.job-insights ul li .progress {
  height: 8px;
  width: 100%;
}


.job-box.job-insights ul li .progress,
.progress-stacked {
  background-color: var(--border-muted);
  --bs-progress-bar-bg: var(--accent);
}

.progress-details p {
  color: var(--muted-strong);
  font-size: 16px;
  font-weight: 400;
}

.fixed-apply-btn {
  display: none;
}

@media (max-width:992px) {
  .jop-page-details {
    padding: 48px 16px;
  }
}

@media (max-width:767px) {
  .jop-page-details .row .col-4 {
    display: none;
  }

  .jop-page-details .row .col-8 {
    width: 100%;
  }

  .fixed-apply-btn {
    display: block;
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    color: #fff;
    border: none;
    padding: 14px 0;
    border-radius: 0;
    font-size: 1rem;
    text-align: center;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background-color: var(--accent);
  }
}

/* ================= ACADEMY FILTER SECTION ================== */
.academy-filter-section {
  background-color: var(--bg-section);
  color: #fff;
  font-family: "Poppins", sans-serif;
  padding: var(--section-padding);
}

.academy-filter-title {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-secondary);
}

.academy-filter-subtitle {
  color: var(--muted-strong);
  font-size: 16px;
  font-weight: 400;
  max-width: 600px;
  margin: 15px auto 30px;
}

.academy-filter-form {
  background-color: var(--bg-card);
  border: 1px solid var(--border-muted);
  border-radius: 10px;
  padding: 30px 25px;
}

.form-label {
  font-weight: 500;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.input-group-text {
  background-color: var(--surface-secondary);
  color: #aaa;
  border: none;
}

.filter-input {
  border: 1px solid #333;
  border-radius: 8px;
  overflow: hidden;
}

.filter-input .form-control {
  background-color: var(--surface-secondary);
  border: none;
  color: var(--bo);
}

.filter-input .form-control::placeholder {
  color: var(--text-secondary) !important;
}


.form-select {
  background-color: var(--surface-secondary);
  border: 1px solid #333;
  color: var(--text-secondary);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 400;
}

.form-select:focus,
.form-control:focus,
.reset-btn:focus,
.reset-btn:hover {
  outline: none !important;
  border-color: #333 !important;
  box-shadow: none !important;
  color: var(--muted);
}

.reset-btn {
  height: 38px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  border: 1px solid var(--border-muted);
  color: var(--text-secondary);
  background: var(--surface-secondary);

}

.filter-input .form-control::placeholder {
  opacity: 1;
  font-size: 14px;

}



@media (max-width: 768px) {
  .academy-filter-section {
    padding: 48px 20px;
  }

  .academy-filter-form {
    padding: 20px;
  }
}


/* ========== ACADEMY COURSES GRID SECTION ========== */
.academy-courses-section {
  background-color: var(--bg-section);
  color: #fff;
  font-family: "Poppins", sans-serif;
  padding-bottom: 20px;
  padding: var(--section-padding);
}

.academy-courses-section h4,
.academy-courses-section p {
  color: var(--bo);
}

.courses-count {
  color: #A1A1A1;
  font-weight: 400;
  font-size: 16px;
}

.course-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-muted);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.course-card:hover {
  box-shadow: 0 0 10px rgba(0, 192, 93, 0.25);
  transform: translateY(-4px);
}

.course-img {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.course-img img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.course-level {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 3px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.course-level.beginner {
  background-color: #00BF5D;
}

.course-level.intermediate {
  background-color: #00BF5D;
}

.course-level.advanced {
  background-color: #00BF5D;
}

.course-body {
  padding: 30px;
}

.course-category {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 10px;
}

.course-title {
  font-size: 18px;
  color: var(--bo);
  margin-bottom: 10px;
  line-height: 1.6;
  letter-spacing: .5px;
}

.course-instructor {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 12px;
}

.course-meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  font-size: 13px;
  color: #aaa;

}

.course-meta i {
  /* color:var(--accent); */
  font-size: 14px;
}

.course-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #1f1f1f;
  padding-top: 14px;
}

.course-price {
  color: var(--accent);
  font-size: 16px;
  margin-bottom: 0;
}

.btn-enroll {
  background-color: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  padding: 6px 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-enroll:hover {
  background-color: #00a651;
  color: #fff;
}

/* ===== Responsive ===== */


@media (max-width: 768px) {
  .academy-courses-section {
    padding: 48px 20px;
  }

  .course-img img {
    height: 160px;
  }
}

/* ========== ACADEMY SELECTED COURSE SECTION ========== */
.selected-course-section {
  background-color: var(--bg-section);
  color: #fff;
  font-family: "Poppins", sans-serif;
  padding: 80px 100px;
}

.back-link {
  color: var(--bo);
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.back-link:hover {
  color: var(--accent);
}

.badge-level {
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.badge-level.advanced {
  background-color: var(--accent);
}

.course-type {
  font-size: 14px;
  color: var(--muted);
}

.course-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--bo);
  margin-bottom: 12px;
}

.course-description {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.course-meta {
  display: flex;
  gap: 22px;
  font-size: 14px;
  color: var(--muted);
  flex-wrap: wrap;
}

.course-meta i {
  color: var(--accent);
  margin-right: 6px;
}


.instructor-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-muted);
  border-radius: 14px;
  padding: 26px 20px;
  margin-top: 25px;
}

.instructor-content {
  display: flex;
  align-items: center;
  gap: 18px;
}

.instructor-img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.instructor-text {
  flex: 1;
  color: #fff;
}

.instructor-label {
  font-size: 18px;
  font-weight: 500;
  color: var(--muted);
  margin: 0;
  line-height: 1;
}

.instructor-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--bo);
  margin: 4px 0;
}

.instructor-info {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}


.enroll-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-muted);
  border-radius: 12px;
  overflow: hidden;
}

.course-preview {
  position: relative;
  width: 100%;
  height: 210px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-muted);
  border-radius: 10px 10px 0 0;
}

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


.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background-color: #fff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 12px rgba(0, 192, 93, 0.4);
  margin: 0;
  padding: 0;
}

.play-btn i {
  display: block;
  line-height: 1;
  margin-left: 2px;
  color: var(--accent);
}

.play-btn:hover {
  background-color: var(--accent);
  transform: translate(-50%, -50%) scale(1.05);

}

.play-btn:hover i {
  color: #fff;
}


.enroll-body {
  padding: 24px;
}

.price {
  font-size: 20px;
  font-weight: 600;
  color: var(--accent);
}

.payment-type {
  color: #A1A1A1;
  font-size: 13px;

}

.enroll-body .btn-enroll,
.enroll-body .btn-wishlist {
  width: 100%;
  height: 44px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.enroll-body .btn-enroll {
  background-color: var(--accent);
  color: #fff;
  border: none;
  margin-bottom: 12px;
}

.enroll-body .btn-enroll:hover {
  background-color: #00a651;
}


.enroll-body .btn-wishlist {
  background: transparent;
  color: var(--bo);
  border: 1px solid var(--border-muted);

}

.enroll-body .btn-wishlist:hover {
  background-color: var(--accent);
  color: #fff;
}


.includes {
  text-align: left;
  margin-top: 20px;
  border-top: 1px solid var(--border-muted);
  padding-top: 20px;
}

.includes-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--bo);
  margin-bottom: 18px;
}

.includes-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.includes-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
  border: none;
}

.includes-list i {
  color: var(--accent);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 3px;
}

.includes-list .text-block {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}

.includes-list .text-block strong {
  color: var(--bo);
  font-size: 14px;
  font-weight: 500;
}

.includes-list .text-block span {
  color: #808080;
  font-size: 13px;
}


/* Responsive */
@media (max-width: 992px) {
  .selected-course-section {
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {
  .selected-course-section {
    padding: 48px 20px;
  }

  .enroll-card {
    margin-top: 40px;
  }
}

/* ========== COURSE TABS SECTION ========== */

.course-tabs-section {
  background-color: var(--bg-section);
  color: #fff;
  padding: 80px 100px;
  font-family: "Poppins", sans-serif;
}

.course-tabs-section .nav-tabs {
  border-bottom: none;
  justify-content: center;
  background-color: var(--bg-card);
  gap: 100px;
  border-radius: 4px;
  box-shadow: var(--card-shadow);
}

.course-tabs-section .nav-tabs .nav-link {
  position: relative;
  background: var(--bg-card);
  border: none;
  color: var(--muted);
  font-weight: 500;
  font-size: 16px;
  border-radius: 0;
  padding: 10px 0;
  transition: 0.3s ease;
}

.course-tabs-section .nav-tabs .nav-link:hover {
  color: var(--accent);
}


.course-tabs-section .nav-tabs .nav-link.active {
  color: var(--accent);
}


.course-tabs-section .nav-tabs .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.course-tabs-section .nav-tabs .nav-link.active::after {
  width: 100%;
}

.course-tabs-section .tab-content {
  background-color: var(--bg-card);
  border: 1px solid var(--border-muted);
  border-radius: 14px;
  padding: 30px;
  margin-top: 40px;
}

/* ========== CURRICULUM MODULES ========== */

.curriculum-card {
  background-color: var(--bg-card);
  /* border: 1px solid #1f1f1f; */
  border-radius: 10px;
  padding: 10px;
}

.module {
  border-bottom: 1px solid #1f1f1f;
  background-color: transparent;
  overflow: hidden;
}

.module:last-child {
  border-bottom: none;
}

.module-header {
  background: transparent;
  border: none;
  width: 100%;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--bo);
  cursor: pointer;
  transition: 0.3s;
}

.module-header:hover {
  background-color: var(--surface-secondary);
}

.module-num {
  background-color: var(--accent)1A;
  color: var(--accent);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
}

.module-info h6 {
  font-size: 15px;
  margin: 0;
  color: var(--bo);
}

.module-info p {
  font-size: 13px;
  margin: 0;
  color: #aaa;
  text-align: left;
}

.toggle-icon {
  color: var(--muted);
  transition: transform 0.3s ease;
}

.module.open .toggle-icon {
  transform: rotate(180deg);
}


.module-body {
  display: none;
  padding: 10px 50px 20px 68px;
  animation: slideDown 0.4s ease forwards;
}

.module.open .module-body {
  display: block;
}

.module-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.module-body li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 14px;
  padding: 8px 0;
}

.module-body li i {
  color: var(--accent);
  font-size: 18px;
  margin-right: 10px;
}

.module-body li span {
  color: #808080;
  font-size: 13px;
  margin-left: auto;
}

.module-body li {
  gap: 8px;
}

/* ====== Smooth Slide Animation for Modules ====== */
.module-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.module.open .module-body {
  opacity: 1;
  max-height: 600px;
}

.toggle-icon {
  transition: transform 0.3s ease;
}

.module.open .toggle-icon {
  transform: rotate(180deg);
}

.module-header {
  cursor: pointer;
}

.toggle-icon {
  pointer-events: none;
}

/* Animation */
@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-5px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Overview Tab */
.overview-subtitle {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.learn-list {
  list-style: none;
  padding: 0;
}

.learn-list li {
  color: var(--muted);
  margin-bottom: 10px;
  display: flex;
  justify-content: start;
  align-items: start;
}

.learn-list i {
  color: var(--accent);
  margin-right: 8px;
}

.requirements-list {
  list-style: none;
  padding: 0;
  color: var(--muted);
  font-size: 14px;
}

.course-description {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 992px) {
  .course-tabs-section {
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {

  .curriculum-card,
  .overview-card {
    padding: 20px;
  }

  .module-body {
    padding: 10px 20px 20px 60px;
  }

  .course-tabs-section {
    padding: 48px 20px;
  }

  .nav-tabs .nav-link {
    padding: 8px 16px;
    font-size: 14px;
  }

  .tab-content {
    padding: 20px;
  }
}

@media (max-width:560px) {
  .course-tabs-section .tab-content {
    padding: 0px;
  }

  .module-header {
    padding: 16px 0;
  }

  .module-info {
    text-align: start;
  }

  .module-num {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    font-size: 13px;
  }

  .module-body {
    padding: 10px 20px 20px 20px;
  }

  .module-body li {
    gap: 4px;
    font-size: 12px;
  }

  .module-body li i {
    font-size: 16px;
  }

  .module-info h6 {
    margin-bottom: 6px;
  }
}

@media (max-width:500px) {
  .course-tabs-section .nav-tabs {
    gap: 40px;
  }

  .course-tabs-section .nav-tabs .nav-link {
    font-size: 14px;
  }

  .module-header {
    display: flex;
    gap: 4px;
  }

  .instructor-content {
    flex-direction: column;
  }

  .instructor-text {
    text-align: center;
  }

  .instructor-text .instructor-info {
    text-align: start;
  }

  .instructor-text .instructor-info br {
    display: none;
  }
}

@media (max-width:400px) {
  .course-tabs-section .nav-tabs {
    gap: 15px;
  }
}

/* ============= case bank section ==================== */
.case-bank-section {
  padding: var(--section-padding);
  background-color: var(--bg-section);
}

.video-filter-taps {
  width: max-content;
  overflow: hidden;
  border: 1px solid var(--border-muted);
  border-radius: 14px;
  background-color: var(--bg-table-tap);
  scrollbar-width: none;
}

.video-filter-taps .nav {
  display: flex;
  gap: 8px;
  padding: 4px;
  width: 100%;
  overflow-x: auto;
  flex-wrap: nowrap;
  scrollbar-width: none;
}

.video-filter-taps .nav a {
  color: #A0A0A0;
  font-size: 14px;
  font-weight: 500;
  padding: 3px 8px;
  flex-shrink: 0;
}

.text-white {
  color: var(--bo) !important;
}

.video-filter-taps .nav a.active {
  border: 1px solid var(--border-muted);
  background-color: rgba(38, 38, 38, 0.3);
  color: var(--bo);
  border-radius: 14px;
  font-size: 14px;
  font-weight: 500;
}

.case-bank-section h3 {
  color: var(--bo);
  font-size: 20px;
  font-weight: 500;
  margin-top: 40px;
  text-transform: capitalize;
}

.case-bank-section p {
  color: #A0A0A0;
  font-size: 16px;
  font-weight: 400;
}

.training-video-card,
.team-card {
  background-color: var(--bg-table-tap);
  border-radius: 14px;
  border: 1px solid var(--border-muted);
  margin-bottom: 15px;
  transition: all 0.5s;
}

.training-video-card:hover {
  box-shadow: 0 0 6px var(--accent);
  border: 1px solid transparent;
}

.training-video-card .training-video {
  height: 250px;
  object-fit: cover;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  overflow: hidden;
  position: relative;
}

.training-video-card .training-video .play-btn {
  background-color: var(--accent);
}

.training-video-card .training-video .play-btn i {
  color: var(--bo);
}

.training-video-card .training-video img {
  object-fit: cover;
}

.training-video-card .card-body {
  padding: 20px;
  margin-top: 24px;
  max-width: 80%;
}

.video-statues {
  color: rgba(0, 192, 93, 1);
  background-color: rgba(0, 195, 122, 0.1);
  border: 2px solid rgba(0, 192, 93, 0.2);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 12px;
  letter-spacing: 0.3px;
  box-shadow: 0 0 4px rgba(0, 195, 122, 0.2);
  padding: 2px 8px;
}

.card-header span {
  font-size: 14px;
  font-weight: 400;
}

.card-body h3,
.card-body p {
  font-size: 16px;
  font-weight: 400;
}

.card-body p {
  color: #A0A0A0;
}

.card-body h3 {
  color: var(--bo);
}

.video-details,
.about-stats-card,
.values-card,
.journey-card {
  background-color: var(--bg-table-tap);
  border: 1px solid var(--border-muted);
  border-radius: 14px;
  display: flex;
  flex-direction: column;

}

.video-details,
.about-stats-card {
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
  padding: 25px 0;
}

.video-details span,
.about-stats-card span {
  color: var(--accent);
  font-size: 36px;
  font-weight: 600;
}

.video-details p,
.about-stats-card p {
  color: #A0A0A0;
  font-size: 16px;
  font-weight: 400;
}

@media (max-width:992px) {
  .case-bank-section {
    padding: 48px 16px;
  }
}

@media (max-width:600px) {
  .video-filter-taps {
    width: 100%;
  }

  .training-video-card .card-body {
    max-width: 100%;
  }
}



/* ============================= about section =================== */


/* about hero section */
.about-hero,
.blogs-hero {
  background: linear-gradient(to right, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 0) 40%, rgba(0, 192, 93, 0.1) 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  margin-bottom: 60px;
}


.about-logo,
.blogs-logo {
  background-image: url(../img/about-logo.png);
  position: absolute;
  width: 300px;
  height: 300px;
  right: 0;
  bottom: 0;
  background-size: cover;
  z-index: 2;
  opacity: 1;
}

[data-theme="dark"] .about-logo,
[data-theme="dark"] .blogs-logo {
  opacity: 0.2;
}




.about-container,
.blogs-container {
  padding: 80px 100px;
  gap: 20px;
}

.about-badge {
  width: fit-content;
  padding: 10px 20px;
  border-radius: 45px;
}

.about-hero-title {
  font-size: 56px;
  font-weight: 600;
  color: var(--bo);
}


.about-hero-desc {
  font-size: 20px;
  font-weight: 400;
  color: var(--muted-strong);
}


@media (max-width:992px) {
  .about-container {
    padding: 48px 20px;
  }

  .about-logo {
    width: 200px;
    height: 200px;
  }

  .about-hero-title {
    font-size: 46px;
  }

}

@media (max-width:600px) {
  .about-hero-title {
    font-size: 34px;
  }
}

/*  about stats section */

.about-stats {
  padding: 0 100px;
}



@media (max-width:992px) {
  .about-stats {
    padding: 0 20px;
  }
}




/* about mission vision */

.about-mission-vision {
  padding: var(--section-padding);
}

.about-mission-vision .col-md-6 {
  min-height: 100%;
  margin-bottom: 15px;
}

.mission-card,
.vision-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;


}

.mission-card {
  background: linear-gradient(170deg, rgba(26, 26, 26, 0) 0%, rgba(26, 26, 26, 0) 40%, rgba(0, 192, 93, 0.05) 100%);

}

.vision-card {
  background: linear-gradient(320deg, rgba(26, 26, 26, 0) 0%, rgba(26, 26, 26, 0) 40%, rgba(0, 192, 93, 0.05) 100%);

}


.mission-icon,
.vision-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(0, 192, 93, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.mission-icon i,
.vision-icon i {
  color: var(--accent);
  font-size: 20px;
}

.mission-vision-title {
  font-size: 28px;
  font-weight: 500;
  color: var(--bo);
}

.mission-vision-desc {
  font-size: 16px;
  font-weight: 400;
  color: vat var(--muted-strong);
}


@media (max-width:992px) {
  .about-mission-vision {
    padding: 48px 20px;
  }

}

@media (max-width:600px) {

  .vision-card,
  .mission-card {
    padding: 30px;
  }

}


/* about values */


.about-core-values {
  padding: var(--section-padding);
}

.about-core-values .container-fluid {
  margin-top: 70px;
}

.about-core-values .container-fluid .row .col-12 {
  min-height: 100%;
  margin-bottom: 15px;
}

.about-core-values>h2,
.about-journey>h2,
.team-section>h2 {
  font-size: 40px;
  font-weight: 500;
  color: var(--bo);
  text-align: center;
}

.about-core-values>p,
.about-journey>p,
.team-section>p {
  font-size: 18px;
  font-weight: 400;
  color: var(--muted-strong);
  text-align: center;
}

.values-card {
  height: 100%;
}


.values-card,
.journey-card {
  padding: 25px;
  gap: 30px;
}

.values-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background-color: rgba(0, 192, 93, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.values-icon i {
  color: var(--accent);
  font-size: 20px;
}

.values-card h3 {
  font-size: 16px;
  font-weight: 400;
  color: var(bo);
}

.values-card p {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted-strong);
}


@media (max-width:992px) {
  .about-core-values {
    padding: 48px 20px;
  }
}


/*  about journey */


.about-journey {
  padding: var(--section-padding);
}

.about-journey .container-fluid {
  margin-top: 70px;
}

.journey-wrapper {
  position: relative;
}

.journey-wrapper::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  background-color: var(--border);
  z-index: 1;
}

.about-journey .container-fluid .row {
  margin-bottom: 30px;
}

.about-journey .row .col-sm-6.left {
  margin-right: auto;
}

.about-journey .row .col-sm-6.right {
  margin-left: auto;
}


.journey-card.left {
  text-align: right;
  position: relative;
}

.journey-card.right {
  text-align: left;
  position: relative;
}

.journey-card span {
  font-size: 24px;
  font-weight: 600;
  color: var(--accent);
}





.journey-card.left::after,
.journey-card.right::before {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--accent);
  z-index: 2;
  top: 50%;
}


.journey-card.left::after {
  right: -21px;
}

.journey-card.right::before {
  left: -19px;
}


@media (max-width:992px) {
  .about-journey {
    padding: 48px 20px;
  }
}

@media (max-width:576px) {
  .journey-wrapper::after {
    left: 0;
  }

  .journey-card.left,
  .journey-card.right {
    text-align: left;
  }

  .journey-card.left::after {
    left: -19px;
  }



}


/* teams section */

.team-section {
  padding: var(--section-padding);
}

.team-section .container-fluid {
  margin-top: 70px;
}

.team-section .container-fluid .row .col-lg-4 {
  min-height: 100%;
  margin-bottom: 15px;
}

.team-card {
  height: 100%;
  overflow: hidden;
  transition: all 0.5s;
}

.team-card:hover {
  box-shadow: 0 0 6px var(--accent);
  border: 1px solid transparent;
  transform: translateY(-4px);
}

.team-card img {
  height: 390px;
  object-fit: cover;

}


.team-card .card-body h4 {
  font-size: 16px;
  font-weight: 400;
  color: var(--bo);
}

.team-card .card-body {
  padding: 24px 24px 0 24px;
}

.team-card .card-body span {
  font-size: 14px;
  font-weight: 400;
  color: var(--accent);
}

.team-card .card-body p {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted-strong);
}

@media (min-width:992px) and (max-width:1200px) {
  .team-card img {
    height: 200px;
  }
}


@media (max-width:992px) {
  .team-section {
    padding: 48px 20px;

  }
}

@media (max-width:600px) {
  .team-card img {
    height: 100%;
  }
}

/* join section */
.join-section {
  padding: var(--section-padding);
}


.join-wrapper,
.subscribe-wrapper {
  padding: 50px;
  background: linear-gradient(to left, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 0) 40%, rgba(0, 192, 93, 0.1) 100%);
  border: 1px solid rgba(0, 192, 93, 0.2);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 35px;
}


.join-wrapper h3,
.subscribe-wrapper h3 {
  font-size: 36px;
  font-weight: 400;
  color: var(--bo);
}

.join-wrapper p,
.subscribe-wrapper p {
  font-size: 16px;
  font-weight: 400;
  color: var(--muted-strong);
}

.join-wrapper .join-btn {
  width: 100%;
  padding: 16px 0;
  background-color: var(--accent);
  border: 0;
  border-radius: 10px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
}


@media (max-width:992px) {
  .join-section {
    padding: 48px 20px;
  }


}

@media (max-width:600px) {
  .join-wrapper {
    padding: 25px;
  }
}


/* ======================== blogs ======================== */


/* blogs-hero */


.blogs-logo {
  background-image: url(../img/Logomark\ Dark.png);
  position: absolute;
  width: 390px;
  height: 300px;
  right: 0;
  bottom: 0;
  background-size: cover;
  z-index: 2;
  opacity: 1;
}


[data-theme="dark"] .blogs-logo {
  opacity: 0.2;
}


.blogs-container h1 {
  font-size: 48px;
  font-weight: 600;
  color: var(--bo);
  display: flex;
  align-items: center;
  gap: 20px;
}

.blogs-container h1 i {
  color: var(--accent);
  font-size: 36px;
}

.blogs-container p {
  font-size: 18px;
  font-weight: 400;
  color: var(--muted-strong);
}

.blogs-container .search-input-wrapper {
  position: relative;
  display: flex;
  width: 100%;
}


.blogs-container .search-input-wrapper i {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
}



.blogs-container input {
  flex-grow: 1;
  padding: 14px 40px;
  background-color: var(--bg-table-tap);
  border: 1px solid var(--border-muted);
  border-radius: 8px;
  color: var(--muted-strong);

}

.blogs-container .search-btn {
  flex-grow: 0;
  padding: 14px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--accent);
  border: none;
  border-radius: 10px;
  color: var(--bo);
  width: fit-content;
}


@media (max-width:992px) {
  .blogs-hero {
    padding: 60px 20px;
  }

  .blogs-container {
    padding: 0;
  }

  .blogs-logo {
    width: 300px;
    height: 200px;
  }
}

@media (max-width:500px) {
  .blogs-container h1 {
    font-size: 36px;
  }

  .blogs-container h1 i {
    font-size: 30px;
  }
}

@media (max-width:400px) {
  .blogs-container h1 {
    font-size: 28px;
  }

  .blogs-container h1 i {
    font-size: 22px;
  }
}

/* featured blogs  */

.featured-blog {
  padding: var(--section-padding);
}

.featured-tabs {
  gap: 20px;
  overflow-x: scroll;
  flex-wrap: nowrap;
  scrollbar-width: none;
}

.featured-tabs .nav-item {
  flex-shrink: 0;
}


.featured-tabs .nav-link.active {
  background-color: var(--accent);
  color: var(--bo);
}



.featured-tabs .nav-link {
  color: var(--muted-strong);
  padding: 10px 18px;
  background-color: var(--bg-table-tap);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
}

.teachnology-bg {
  height: 100%;
}


.teachnology-bg img {
  width: 100%;
  min-height: 500px;
  height: 100%;
  object-fit: fill;
  border-top-left-radius: 14px;
  border-bottom-left-radius: 14px;
}



.blog-badge {
  width: fit-content;
}


.featured-blog .row .col-lg-6 {
  background-color: var(--bg-table-tap);
  padding: 0;
}

.featured-blog .row .col-lg-6:first-child {
  border-top-left-radius: 14px;
  border-bottom-left-radius: 14px;
  border: 1px solid var(--border);
}

.featured-blog .row .col-lg-6:last-child {
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
  border: 1px solid var(--border);
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.featured-blog .row .col-lg-6:last-child h2 {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--bo);
}

.featured-blog .row .col-lg-6:last-child p {
  font-size: 18px;
  font-weight: 400;
  color: var(--muted-strong);
}

.featured-blog .row .col-lg-6:last-child ul {
  display: flex;
  gap: 24px;
  list-style: none;
  padding: 0;
  color: var(--muted-strong);
}

.featured-blog .row .col-lg-6:last-child a {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
  color: var(--accent);
  font-size: 16px;
  font-weight: 400;
}

.teachnology-bg {
  position: relative;
}

.teachnology-bg .badge {
  background-color: var(--accent);
  color: #ffffff;
  position: absolute;
  font-size: 12px;
  font-weight: 500;
  top: 20px;
  left: 20px;
}


@media (max-width:992px) {
  .featured-blog {
    padding: 48px 20px;
  }

  .featured-blog .row .col-lg-6:first-child {
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
    border-bottom-left-radius: 0px;
  }

  .featured-blog .row .col-lg-6:last-child {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 14px;
    border-bottom-left-radius: 14px;
    padding: 20px;
  }

  .teachnology-bg img {
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
    border-bottom-left-radius: 0px;
  }

}

@media (max-width:600px) {
  .featured-blog .row .col-lg-6:last-child ul {
    flex-direction: column;
  }

  .featured-blog .row .col-lg-6:last-child h2 {
    font-size: 26px;
  }
}


/* articles section */


.articles {
  padding: var(--section-padding);
}


.articles h3 {
  font-size: 32px;
  font-weight: 500;
  color: var(--bo);
}

.articles p {
  font-size: 16px;
  font-weight: 400;
  color: var(--muted-strong);
}


@media (max-width:992px) {
  .articles {
    padding: 48px 20px;
  }
}



/* subscribe */

.subscribe {
  padding: var(--section-padding);
}

.subscribe-wrapper input {
  padding: 14px 12px;
  background-color: rgba(var(--border-muted), 0.3);
  border: 2px solid var(--border-muted);
  color: var(--muted-strong);
  border-radius: 8px;

}


.subscribe-wrapper button {
  background-color: var(--accent);
  padding: 14px 30px;
  color: #ffffff;
  border: none;
  border-radius: 8px;

}


@media (max-width:992px) {
  .subscribe {
    padding: 48px 20px;
  }

  .subscribe-wrapper {
    padding: 25px;
  }


}

@media (max-width:600px) {
  .subscribe-wrapper h3 {
    font-size: 32px;
    text-align: center;
  }
}


@media (max-width:450px) {
  .subscribe-wrapper>div {
    flex-direction: column;
  }
}


/* ========================= single blog ===================== */

/* single blog hero */

.single-blog-header {
  background-image: url(../img/blog-hero.jpg);
  min-height: 60vh;
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.single-blog-content {
  padding: var(--section-padding);
  margin-top: -200px;
}



.single-blog-content .col-xl-9 .hero-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border);
}

.single-blog-content .col-xl-9 .hero-section h2 {
  font-size: 44px;
  font-weight: 600;
  color: var(--bo);
}

.single-blog-content .col-xl-9 .hero-section .user-details {
  display: flex;
  gap: 10px;
}

.single-blog-content .col-xl-9 .hero-section .user-details .user-icon,
.single-blog-footer .social-icons .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(0, 192, 93, 0.1);
  color: var(--accent);
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.single-blog-content .col-xl-9 .hero-section .user-details p:first-child {
  font-size: 16px;
  color: var(--bo);
  font-weight: 400;
}

.single-blog-content .col-xl-9 .hero-section .user-details p:last-child {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted-strong);
}

.user-details-wrapper {
  display: flex;
  align-items: anchor-center;
}

.user-details-wrapper ul {
  display: flex;
  gap: 10px;
  list-style: none;
}

.user-details-wrapper ul li {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted-strong);
}



.single-blog-content .content {
  padding: 50px;
  background-color: var(--bg-table-tap);
  border-radius: 14px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 40px;
  height: auto;
  justify-content: start;
}



.single-blog-content .content p {
  font-size: 18px;
  font-weight: 400;
  color: var(--muted-strong);
}

.single-blog-content .content .blog-article {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.single-blog-content .content .blog-article h3 {
  font-size: 32px;
  font-weight: 400;
  color: var(--bo);
}

.single-blog-content .content .blog-article .blog-highlight {
  padding: 24px;
  background-color: rgba(0, 192, 93, 0.05);
  border: 1px solid rgba(0, 192, 93, 0.2);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.single-blog-content .content .blog-key {
  width: 100%;
  padding: 32px;
  background: linear-gradient(to right, rgba(0, 192, 93, 0), rgba(0, 192, 93, 0.1));
  border: 1px solid rgba(0, 192, 93, 0.2);
  border-radius: 14px;

}

.single-blog-content .content .blog-key ul {
  padding: 0;
  list-style: inside;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 25px;
}

.single-blog-content .content .blog-key ul li {
  color: var(--muted-strong);
  font-size: 16px;
}

.single-blog-footer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.single-blog-footer .social-icons {
  display: flex;
  align-items: center;
  gap: 15px;

}

.single-blog-footer button {
  padding: 8px 12px;
  background-color: rgba(var(--border-muted), 0.3);
  border: 2px solid var(--border);
  border-radius: 8px;
  color: var(--bo);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.author-card {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  background-color: var(--bg-table-tap);
  border: 1px solid var(--border);
  padding: 30px;
  border-radius: 14px;
  margin-top: 20px;
}


.author-image .icon-wrapper {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  background-color: rgba(0, 192, 93, 0.1);
}

.author-image .icon-wrapper i {
  font-size: 32px;
  color: var(--accent);
}

.author-card .author-name {
  font-size: 16px;
  color: var(--bo);
}

.author-card .author-position {
  font-size: 14px;
  color: var(--accent);
}

.author-card .author-bio {
  font-size: 14px;
  color: var(--muted-strong);
}

.author-card .author-socials .social-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(0, 192, 93, 0.1);
  font-size: 14px;
  color: #ffffff;
  text-decoration: none;
}


[data-theme="light"] .author-card .author-socials .social-icon {
  background-color: rgba(0, 192, 93, 0.7);
}


.quick-actions-card,
.related-articles-card {
  background-color: var(--bg-table-tap);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 30px;
}

.quick-actions-card h5 {
  font-size: 16px;
  color: var(--bo);
  margin-bottom: 10px;
}

.quick-actions-card .qa-btn {
  background-color: rgba(var(--border-muted) 0.3);
  border: 1px solid var(--border-muted);
  border-radius: 14px;
  color: var(--bo);
  font-size: 14px;
  font-weight: 500;
  width: 100%;
  padding: 10px 13px;
  margin-top: 10px;
}

.related-article-item img {
  width: 100%;
  height: 160px;
  border-radius: 14px;
  object-fit: cover;
}

.related-article-item .ra-content {
  display: flex;
  flex-direction: column;
}

.related-article-item .ra-content h6 {
  font-size: 14px;
  color: var(--bo);
}

.related-article-item .ra-content p {
  font-size: 12px;
  color: var(--muted-strong);

}

.updated-card {
  background: linear-gradient(170deg, rgba(26, 26, 26, 0), rgba(0, 192, 93, 0.1));
  border: 1px solid rgba(0, 192, 93, 0.2);
  border-radius: 14px;
  margin-top: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.updated-card h5 {
  font-size: 16px;
  color: var(--bo);
}

.updated-card p {
  font-size: 14px;
  color: var(--muted-strong);
}

.updated-card button {
  width: 100%;
  background-color: var(--accent);
  border: none;
  border-radius: 8px;
  color: #ffffff;
  font-size: 14px;
  padding: 8px 0;
}

.blog-btn,
.community-btn {
  padding: 25px 100px;
  background-color: var(--bg-table-tap);
}

.blog-btn a {
  color: var(--muted-strong);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-btn a i {
  color: var(--muted-strong);
}




@media (max-width:1200px) {
  .single-blog-content {
    padding: 48px 20px;
  }
}

@media (max-width:992px) {
  .single-blog-content .content {
    padding: 35px;
  }

  .user-details-wrapper ul {
    flex-direction: column;
  }

  .single-blog-content .col-xl-9 .hero-section h2 {
    font-size: 38px;
  }
}

@media (max-width:900px) {
  .single-blog-footer {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width:600px) {

  .author-card {
    flex-direction: column;
    align-items: center;
  }

  .author-info {
    text-align: center;
  }

  .author-socials {
    justify-content: center;
  }

  .single-blog-content .content {
    padding: 20px;
  }

  .user-details-wrapper {
    flex-direction: column;
    align-items: start;
  }

  .user-details-wrapper ul {
    margin-left: 24px;
  }

  .single-blog-content .col-xl-9 .hero-section h2 {
    font-size: 28px;
  }

  .single-blog-header {
    height: 250px;
  }

  .single-blog-content {
    margin-top: -120px;
  }

}


/* ===== Trusted by Leading Brands Slider ===== */
.trusted-brands {
  background-color: var(--bg-section);
  padding: 48px 16px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}



.trusted-title {
  color: var(--muted-light);
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
}

.trusted-swiper {
  width: 100%;
  overflow: hidden;
  padding-top: 25px;
}

.trusted-swiper .swiper-wrapper {
  display: flex;
  align-items: center;
  transition-timing-function: linear !important;
}

.trusted-swiper .swiper-slide {
  width: auto !important;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand-card {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--bo);
  padding: 0 60px;
}

.brand-icon {
  background-color: var(--accent);
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 14px;
}

.brand-name {
  font-weight: 500;
  font-size: 16px;
  color: var(--muted-light);
}

@media (max-width:992px) {
  .trusted-brands {
    padding: 48px 16px;
  }
}

@media (max-width: 768px) {
  .brand-card {
    gap: 10px;
    padding: 0 15px;
  }

  .brand-name {
    font-size: 14px;
  }
}

.trusted-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}


/* ===== Featured Training Section ===== */
.featured-training {
  background-color: var(--bg-section);
  padding: var(--section-padding);
  color: #f5f5f5;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}


.featured-training .featured-title,
.testimonials-section.testimonials-title,
.faq-section .faq-title {
  font-size: 36px;
  font-weight: 600;
  color: var(--bo);
  margin-bottom: 10px;

}

.featured-training .featured-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: var(--muted-strong);
  margin-bottom: 0;

}

.video-box {
  height: 100%;
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto;
}

.video-box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.badge-featured {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--accent);
  color: #fff;
  font-size: 14px;
  padding: 6px 14px;
  border-radius: 6px;
  font-weight: 500;
}

.play-btn2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--accent);
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.play-btn2:hover {
  color: #fff;
  background-color: #02b85c;
  transform: translate(-50%, -50%) scale(1.05);
}

.play-btn2 i {

  color: #fff;
}


.video-time {
  position: absolute;
  bottom: 12px;
  right: 16px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 14px;
  padding: 4px 10px;
  border-radius: 6px;
  display: flex;
  align-items: center;
}

.video-heading {
  font-size: 26px;
  font-weight: 600;
  color: #fff;
}

.video-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 30px;
}

.watch-btn {
  background-color: var(--accent);
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  padding: 12px 28px;
  border: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.watch-btn:hover {
  background-color: #02b85c;
}

.video-content .video-content-title {
  font-size: 32px;
  font-weight: 400;
  color: var(--bo);
}


@media (max-width: 992px) {
  .featured-training {
    padding: 48px 16px;
  }

  .featured-training .featured-title {
    font-size: 28px;
  }

  .featured-training .featured-subtitle {
    font-size: 15px;
  }

  .video-heading {
    font-size: 22px;
  }
}

@media (max-width: 576px) {
  .featured-training .featured-title {
    font-size: 24px;
  }

  .video-box {
    margin-bottom: 20px;
  }
}




/* ===== Blogs Section ===== */
.blogs-section {
  background-color: var(--bg-section);
  padding: var(--section-padding);
  color: var(--bo);
  border-top: 1px solid var(--border);
}

.blogs-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 10px;
}

.blogs-subtitle {
  color: var(--muted-light);
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto;
}


.blog-card {
  background-color: var(--bg-table-tap);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
}

.blog-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card .blog-img img {
  height: 230px;
  object-fit: cover;
}

.blog-card:hover {
  transform: translateY(-6px);
  border: 1px solid var(--accent);
  box-shadow: 0 0 8px rgba(0, 192, 93, 0.15);
}

.blog-badge {
  background-color: var(--accent);
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 500;
}

.blog-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--bo);
  flex-grow: 1;
}

.blog-desc {
  color: var(--muted-strong);
  font-size: 15px;
  line-height: 1.6;
}

.blog-meta {
  gap: 16px;
}

.blog-meta span,
.blog-meta span i {
  color: var(--muted-gray);
}

.blog-author {
  color: var(--muted-strong);
  border-top: 1px solid var(--border-muted);
}

.text-accent {
  color: var(--accent);
  transition: color 0.3s ease;
}

.text-accent:hover {
  color: #02b85c;
}

.single-blog-header .view-more-btn {
  background-color: var(--accent);
  color: #fff;
  font-weight: 500;
  padding: 12px 40px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.view-more-btn:hover {
  background-color: #02b85c;
}

.blogs-section .view-more-btn {
  background-color: var(--accent);
  color: #fff;
  font-weight: 500;
  padding: 12px 40px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.blogs-section .view-more-btn:hover {
  background-color: #02b85c;
}


/* Responsive */
@media (max-width: 992px) {
  .blogs-section {
    padding: 48px 16px;
  }

  .blogs-title {
    font-size: 28px;
  }

  .blog-desc {
    font-size: 14px;
  }
}


@media (min-width:992px) and (max-width:1100px) {
  .blog-meta {
    flex-direction: column;
    gap: 8px;
  }
}

/* ====================== testimonials-section ====================== */

.testimonials-section {
  padding: var(--section-padding);
  background-color: var(--bg-section);
  position: relative;
}

.section-subtitle {
  font-size: 18px;
  color: var(--muted-strong);
}


.testimonial-card {
  width: 100%;
  height: 100%;
  background-color: var(--bg-table-tap);
  border-radius: 14px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.testimonial-card .rating-badge {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(0, 192, 93, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--accent);
  font-size: 22px;

}

.testimonial-card .stars i {
  color: var(--accent);
}

.testimonial-text {
  font-size: 15px;
  font-weight: 400;
  color: var(--muted-strong);
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 20px;
  border-top: 2px solid var(--border-muted);
  padding-top: 10px;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author p {
  margin: 0;
}

.testimonial-author p:first-child {
  font-size: 15px;
  font-weight: 500;
  color: var(--bo);
}


.testimonial-author p:nth-child(2) {
  font-size: 14px;
  font-weight: 400;
  color: var(--accent);
}

.testmonial-swiper-btn {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(38, 38, 38, 0.3);
  border: 1px solid var(--border);
  color: var(--bo);
  display: flex;
  justify-content: center;
  align-items: center;
}

.testmonial-swiper-btn.button-prev {
  appearance: none;
  left: 2%;
}

.testmonial-swiper-btn.button-next {
  appearance: none;
  right: 2%;
}

@media (max-width:992px) {
  .testimonials-section {
    padding: 48px 30px;
  }

  .testmonial-swiper-btn {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .testmonial-swiper-btn.button-next {
    right: 1%;
  }

  .testmonial-swiper-btn.button-prev {
    left: 1%;
  }

}

@media (min-width:600px) and (max-width:767px) {


  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }
}


@media (max-width:600px) {


  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }

  .featured-training .featured-title,
  .testimonials-section.testimonials-title,
  .faq-section .faq-title {
    font-size: 30px;
  }

  .testmonial-swiper-btn.button-next {
    right: 1.5%;
  }

  .testmonial-swiper-btn.button-prev {
    left: 1.5%;
  }
}


/* ======================  faq-section ================= */

.faq-section {
  padding: var(--section-padding);
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 30px;
}




.accordion-item,
.accordion-button {
  border-radius: 8px;
  background-color: var(--bg-table-tap);
  border: 1px solid var(--border);
  color: var(--bo);
  font-size: 14px;
  font-weight: 500;
}



.accordion-button::after {
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%239f9f9f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M1.5 5.5l6 6 6-6'/%3e%3c/svg%3e");
  background-size: 0.8rem;
}


.accordion-button:not(.collapsed)::after {
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%239f9f9f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M1.5 5.5l6 6 6-6'/%3e%3c/svg%3e");
  background-size: 0.8rem;
}

.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: var(--accent);
  background-color: rgba(0, 192, 93, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}

.icon-circle i {
  width: 30px;
  height: 30px;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.accordion-button:not(.collapsed) {
  background-color: var(--bg-table-tap);
  color: var(--bo);
  box-shadow: 0 0 8px var(--accent);
}

.accordion-button:focus {
  box-shadow: 0 0 8px var(--accent);
  outline: none;
}

.faqs-question {
  margin-bottom: 15px;
  color: var(--muted-strong);
  font-size: 16px;
  font-weight: 400;
}


@media (max-width:992px) {
  .faq-section {
    padding: 48px 16px;
  }

}


body {
  padding-right: 0 !important;
}

header.site-header {
  padding-right: 0 !important;
  margin-right: 0 !important;
}



.product-set-btn {
  position: absolute;
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%);
  width: 240px;
  height: 48px;
  text-align: center;
}

#userDropdown::after,
.dropdown_user_name {
  border-top-color: var(--accent) !important;
  color: var(--accent) !important;
}

.user-dropdown-menu {
  background-color: var(--bg);
  color: var(--bo);
  /* fallback for Bootstrap variables */
}

[data-theme="dark"] .user-dropdown-menu,
body.dark .user-dropdown-menu {
  background-color: #23272b;
  color: #ffffff;
}

.dropdown-item {
  color: var(--bo);
}

.user-dropdown-menu .dropdown-item:hover,
.user-dropdown-menu li:hover>.dropdown-item {
  background-color: var(--accent);
  color: inherit;
}

[data-theme="light"] .sales-section {
  background-color: white !important;
}

@media (max-width: 1400px) {
  .swiper-sales .product-card {
    min-height: 550px !important;
  }
}

@media (min-width: 1400px) {
  .swiper-sales .product-card {
    min-height: 670px !important;
  }
}

.apply_filter {
  width: 100%;
  background-color: var(--accent);
  padding: 10px 0;
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  border-bottom-left-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
  border: 0;
  transition: all 0.5s;
  margin: 0 50px;
}

.accent-icon {
  color: var(--accent) !important;
}

.shop-section .product-card {
  min-height: 550px;
}

/* Profile avatar hover animation */
.dropdown .dropdown-toggle {
  transition: box-shadow 0.3s, transform 0.3s;
}

.dropdown:hover .dropdown-toggle,
.dropdown:focus-within .dropdown-toggle {
  transform: translateY(-2px) scale(1.04);
}

.dropdown .dropdown-toggle img {
  transition: box-shadow 0.3s, border 0.3s;
  border: 2px solid transparent;
}

.dropdown:hover .dropdown-toggle img,
.dropdown:focus-within .dropdown-toggle img {
  border: 2px solid var(--accent, #0d6efd);
  box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.08);
}

/* Profile initial style */
.profile-initial {
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--accent, #0d6efd);
  text-transform: capitalize;
  font-size: 1.1em;
}

/* Dropdown animation fix for icon */
.user-dropdown-menu .dropdown-item i {
  display: inline-block;
  min-width: 1.2em;
  vertical-align: middle;
  transition: color 0.2s, transform 0.2s;
}

.user-dropdown-menu .dropdown-item:hover i {
  color: var(--bo);
  transform: scale(1.15) rotate(-8deg) translateX(2px);
}

/* Ensure dropdown-item text stays visible on hover */
.user-dropdown-menu .dropdown-item:hover,
.user-dropdown-menu li:hover>.dropdown-item {
  background: var(--accent, #f0f0f0);
  color: #222 !important;
}

[data-theme="light"] .navbar {
  padding: 0% !important;
}

.community-section {
  padding: var(--section-padding);
}

/* qa-header section */
.qa-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.qa-search {
  flex-grow: 1;
  position: relative;
}

.qa-search i {
  position: absolute;
  left: 1%;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted-strong);
  font-size: 16px;
}

.qa-search input {
  width: 100%;
  background-color: var(--bg-table-tap);
  border-radius: 10px;
  border: 2px solid var(--border-muted);
  color: var(--muted-strong);
  padding: 14px 40px;
}

.qa-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.qa-actions .qa-filter-btn {
  padding: 14px 40px;
  color: var(--bo);
  background-color: var(--bg-table-tap);
  border-radius: 10px;
  border: 2px solid var(--border-muted);
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.qa-actions .qa-filter-btn:hover {
  transform: translateY(-2px);
}

.qa-actions .qa-ask-btn {
  padding: 14px 40px;
  color: var(--bo);
  background-color: var(--accent);
  border-radius: 10px;
  border: none;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.qa-actions .qa-ask-btn:hover {
  transform: translateY(-2px);
}

/* qa-stats section */
.qa-stats {
  margin-top: 30px;
}

.qa-stats-card {
  background-color: var(--bg-table-tap);
  border-radius: 10px;
  border: 2px solid var(--border-muted);
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: start;
}

.qa-stats-badge {
  width: fit-content;
}

.qa-stats-card .qa-stats-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted-gray);
}

.qa-stats-card .qa-stats-title i {
  color: var(--accent);
  font-size: 18px;
}

.qa-stats-card .qa-stats-title p {
  margin: 0;
  font-size: 16px;
}

.qa-stats-card .qa-stats-num p {
  margin: 0;
  color: var(--bo);
  font-size: 16px;
}

/*  question card list  */
/* .qa-list {
  margin-top: 30px;
} */
.qa-list .qa-card {
  background-color: var(--bg-table-tap);
  border-radius: 10px;
  border: 2px solid var(--border-muted);
  padding: 25px;
  display: flex;
  align-items: start;
  gap: 24px;
}

.qa-list .qa-card .qa-stats {
  padding: 0 23px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.qa-list .qa-card.solved .qa-stats .stats:nth-child(2) i,
.qa-list .qa-card.solved .qa-stats .stats:nth-child(2) p {
  color: var(--accent);
}

.qa-list .qa-card .qa-stats .stats {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.qa-list .qa-card .qa-stats .stats div {
  display: flex;
  align-items: center;
  gap: 3px;
  color: var(--muted-strong);
}

.qa-list .qa-card .qa-stats .stats span {
  color: var(--muted-strong);
}

.qa-list .qa-card .qa-stats .stats div p {
  margin: 0;
}

.qa-list .qa-card .qa-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.qa-list .qa-card .qa-info .qa-question p {
  margin: 0;
  color: var(--bo);
}

.qa-list .qa-card .qa-info .qa-answer p {
  margin: 0;
  color: var(--muted-light);
}

.qa-list .qa-card .qa-info .qa-job-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  flex-wrap: wrap;
}

.qa-list .qa-card .qa-info .qa-job-badge .job-badge {
  background-color: var(--border-muted);
  border: none;
  padding: 3px 12px;
  border-radius: 14px;
  color: var(--muted-strong);
  font-size: 14px;
}

.qa-list .qa-card .qa-info .qa-answers-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.qa-list .qa-card .qa-info .qa-answers-info img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.qa-list .qa-card .qa-info .qa-answers-info .answers-name {
  color: var(--bo);
  font-size: 14px;
  margin: 0;
}

.qa-list .qa-card .qa-info .qa-answers-info .answers-job-title {
  color: var(--muted-strong);
  font-size: 12px;
  margin: 0;
}

.qa-list .qa-card .qa-info .qa-answers-info .answers-date p {
  font-size: 14px;
  color: var(--muted-strong);
}

.qa-list .pagination-bar {
  width: 80%;
  margin: auto;
}

/* question filter  */
.qa-filter {
  background-color: var(--bg-table-tap);
  border-radius: 10px;
  border: 2px solid var(--border-muted);
  padding: 25px;
  margin: 30px 0;
}

.hidden {
  display: none;
}

.qa-filter .filter-tags .tags,
.tags-wrapper .tags,
.related-tags-card .tags-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.qa-filter .filter-tags .tags .tag,
.tags-wrapper .tags .tag,
.related-tags-card .tags-wrapper .tag-pill {
  background-color: var(--border-muted);
  border: none;
  padding: 3px 12px;
  border-radius: 14px;
  color: var(--muted-strong);
  font-size: 14px;
}

.qa-filter .filter-title {
  color: var(--bo);
  font-size: 18px;
  font-weight: 500;
}

.qa-filter .filter-category {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-stats .stats {
  margin-bottom: 8px;
}

.qa-filter input[type="radio"] {
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--muted-gray);
  margin-right: 10px;
}

.qa-filter input[type="radio"]:checked {
  background-color: var(--accent);
  position: relative;
}

.qa-filter input[type="radio"]:checked+label {
  color: var(--accent);
}

.qa-filter input[type="radio"]:checked::after {
  content: "\F633";
  font-family: "bootstrap-icons";
  color: #fff;
  font-size: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* askQuestion modal */
#askQuestionModal .col-12:not(:last-child) {
  margin-bottom: 25px;
}

#askQuestionModal label {
  margin-bottom: 8px;
  color: var(--bo);
}

#askQuestionModal label:last-of-type {
  margin-bottom: 3px;
  color: var(--bo);
}

#askQuestionModal .addBtn {
  background-color: var(--bg-table-tap);
  border: 2px solid var(--border-muted);
  padding: 3px 12px;
  border-radius: 5px;
  color: var(--muted-strong);
}

#askQuestionModal p {
  font-size: 14px;
  color: var(--muted-strong);
  margin: 5px 0;
}

#askQuestionModal .tags-input-wrapper {
  position: relative;
}

#askQuestionModal .tags-input-wrapper i {
  position: absolute;
  top: 50%;
  left: 1%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
}

#askQuestionModal .tags-input-wrapper input {
  padding: 7px 28px;
}

#askQuestionModal .modal-header {
  border-bottom: 2px solid var(--border-muted);
}

#askQuestionModal .tags-wrapper p {
  margin: 10px 0;
}

#askQuestionModal .footer {
  margin-top: 23px;
  display: flex;
  justify-content: end;
  gap: 8px;
}

#askQuestionModal .cansel-btn {
  border: 2px solid var(--border-muted);
  background-color: var(--bg-table-tap);
  padding: 13px 25px;
  color: var(--bo);
  border-radius: 10px;
}

#askQuestionModal .post-btn,
.answer-card-area .post-btn {
  border: none;
  padding: 13px 25px;
  background-color: var(--accent);
  color: #fff;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.answer-card-area .post-btn:hover {
  transform: translateY(-2px);
}

.modal-content .modal-header .btn-close:focus {
  box-shadow: none;
  border: 0;
}

/* responsive */
@media (max-width:1070px) {
  .qa-stats-card {
    padding: 25px 14px;
  }
}

@media (max-width:992px) {
  .community-section {
    padding: 48px 16px;
    padding-bottom: 10px;
  }

  .qa-header {
    display: block;
  }

  .qa-search {
    margin-bottom: 10px;
  }

  .qa-stats-card {
    padding: 25px;
  }
}

@media (max-width:600px) {
  .qa-list .qa-card {
    flex-direction: column-reverse;
  }

  .qa-list .qa-card .qa-stats {
    flex-direction: row;
    justify-content: center;
    width: 100%;
  }

  .qa-actions .qa-ask-btn {
    padding: 14px 30px;
  }

  .modal-body {
    padding: 0 !important;
  }

  #askQuestionModal .tags-input-wrapper i {
    left: 3%;
  }

  #askQuestionModal .tags-input-wrapper input {
    padding: 7px 32px;
  }
}

@media (max-width:576px) {
  .modal.show {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }
}

/* ===================================== community-answer section ========================== */
.community-answer-hero {
  background-image:
    linear-gradient(to top,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0) 100%),
    url('../assets/img/community.png');
  min-height: 60vh;
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.community-answer-content {
  padding: var(--section-padding);
  margin-top: -200px;
}

.community-answer-content .accepted-answer-badge {
  color: var(--accent);
}

.community-answer-content .qa-card .qa-stats {
  flex-direction: row-reverse;
  justify-content: start;
  padding: 0;
}

.community-answer-content hr {
  border: 1px solid var(--border-soft);
  margin: 0;
}

.community-section .answers-num {
  margin: 29px 0;
  color: var(--muted-strong);
}

.community-answers .answers-num {
  margin: 29px 0;
  color: var(--muted-strong);
}

.answer-card,
.answer-card-area,
.no-answer-card {
  background-color: var(--bg-table-tap);
  border-radius: 10px;
  border: 2px solid var(--border-muted);
  padding: 25px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
}

.answer-card.accepted {
  border: 1px solid var(--accent);
}

.answer-text {
  margin-bottom: 15px;
  color: var(--muted-mid);
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}

.card-footer .answers-name {
  color: var(--bo);
}

.card-footer .answers-job-title {
  color: var(--muted-strong);
  font-size: 12px;
}

.answer-card-area textarea {
  width: 100%;
  border-radius: 10px;
  border: 2px solid var(--border-soft);
  background-color: var(--border-muted);
  padding: 12px 16px;
  color: var(--muted-strong);
}

.answer-card-area .post-btn {
  margin-top: 15px;
  align-self: end;
}

.question-stats-card,
.related-tags-card {
  background-color: var(--bg-table-tap);
  border-radius: 10px;
  border: 2px solid var(--border-muted);
  padding: 25px;
  margin-bottom: 30px;
}

.question-stats-card .stats-title,
.related-tags-card .tags-title {
  font-size: 18px;
  color: var(--bo);
  font-weight: 500;
  margin-bottom: 15px;
}

.question-stats-card .stats-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.stats-label {
  font-size: 16px;
  color: var(--muted-mid);
}

.stats-value {
  font-size: 16px;
  color: var(--bo);
}

/* if question is solved */
.stats-value.solved {
  color: var(--accent);
}

/* if question is not solved */
.stats-value.open {
  color: var(--muted-strong);
}

.no-answer-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.no-answer-card i {
  font-size: 38px;
  color: var(--btn-muted-bg);
}

.no-answer-card p {
  font-size: 16px;
  color: var(--muted-strong);
}

/* responsive */
@media (max-width:992px) {
  .community-answer-content {
    padding: 48px 16px;
    padding-bottom: 10px;
  }
}

@media (max-width:800px) {

  .question-stats-card,
  .related-tags-card {
    padding: 25px 14px;
  }
}

@media (max-width:767px) {

  .question-stats-card,
  .related-tags-card {
    padding: 25px;
  }

  .community-answer-hero {
    min-height: 40vh;
  }
}

@media (max-width:390px) {
  .qa-list .qa-card .qa-stats .stats div {
    flex-direction: column;
    gap: 5px;
  }

  .community-answer-content .qa-card .qa-stats {
    justify-content: space-between;
  }
}


.blog-btn,
.community-btn {
  padding: 25px 100px;
  background-color: var(--bg-table-tap);
}

.community-section {
  padding: var(--section-padding);
}

/* qa-header section */
.qa-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.qa-search {
  flex-grow: 1;
  position: relative;
}

.qa-search i {
  position: absolute;
  left: 1%;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted-strong);
  font-size: 16px;
}

.qa-search input {
  width: 100%;
  background-color: var(--bg-table-tap);
  border-radius: 10px;
  border: 2px solid var(--border-muted);
  color: var(--muted-strong);
  padding: 14px 40px;
}

.qa-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.qa-actions .qa-filter-btn {
  padding: 14px 40px;
  color: var(--bo);
  background-color: var(--bg-table-tap);
  border-radius: 10px;
  border: 2px solid var(--border-muted);
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.qa-actions .qa-filter-btn:hover {
  transform: translateY(-2px);
}

.qa-actions .qa-ask-btn {
  padding: 14px 40px;
  color: var(--bo);
  background-color: var(--accent);
  border-radius: 10px;
  border: none;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.qa-actions .qa-ask-btn:hover {
  transform: translateY(-2px);
}

/* qa-stats section */
.qa-stats {
  margin-top: 30px;
}

.qa-stats-card {
  background-color: var(--bg-table-tap);
  border-radius: 10px;
  border: 2px solid var(--border-muted);
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: start;
}

.qa-stats-badge {
  width: fit-content;
}

.qa-stats-card .qa-stats-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted-gray);
}

.qa-stats-card .qa-stats-title i {
  color: var(--accent);
  font-size: 18px;
}

.qa-stats-card .qa-stats-title p {
  margin: 0;
  font-size: 16px;
}

.qa-stats-card .qa-stats-num p {
  margin: 0;
  color: var(--bo);
  font-size: 16px;
}

/*  question card list  */
/* .qa-list {
  margin-top: 30px;
} */
.qa-list .qa-card {
  background-color: var(--bg-table-tap);
  border-radius: 10px;
  border: 2px solid var(--border-muted);
  padding: 25px;
  display: flex;
  align-items: start;
  gap: 24px;
}

.qa-list .qa-card .qa-stats {
  padding: 0 23px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.qa-list .qa-card.solved .qa-stats .stats:nth-child(2) i,
.qa-list .qa-card.solved .qa-stats .stats:nth-child(2) p {
  color: var(--accent);
}

.qa-list .qa-card .qa-stats .stats {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.qa-list .qa-card .qa-stats .stats div {
  display: flex;
  align-items: center;
  gap: 3px;
  color: var(--muted-strong);
}

.qa-list .qa-card .qa-stats .stats span {
  color: var(--muted-strong);
}

.qa-list .qa-card .qa-stats .stats div p {
  margin: 0;
}

.qa-list .qa-card .qa-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.qa-list .qa-card .qa-info .qa-question p {
  margin: 0;
  color: var(--bo);
}

.qa-list .qa-card .qa-info .qa-answer p {
  margin: 0;
  color: var(--muted-light);
}

.qa-list .qa-card .qa-info .qa-job-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  flex-wrap: wrap;
}

.qa-list .qa-card .qa-info .qa-job-badge .job-badge {
  background-color: var(--border-muted);
  border: none;
  padding: 3px 12px;
  border-radius: 14px;
  color: var(--muted-strong);
  font-size: 14px;
}

.qa-list .qa-card .qa-info .qa-answers-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.qa-list .qa-card .qa-info .qa-answers-info img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.qa-list .qa-card .qa-info .qa-answers-info .answers-name {
  color: var(--bo);
  font-size: 14px;
  margin: 0;
}

.qa-list .qa-card .qa-info .qa-answers-info .answers-job-title {
  color: var(--muted-strong);
  font-size: 12px;
  margin: 0;
}

.qa-list .qa-card .qa-info .qa-answers-info .answers-date p {
  font-size: 14px;
  color: var(--muted-strong);
}

.qa-list .pagination-bar {
  width: 80%;
  margin: auto;
}

/* question filter  */
.qa-filter {
  background-color: var(--bg-table-tap);
  border-radius: 10px;
  border: 2px solid var(--border-muted);
  padding: 25px;
  margin: 30px 0;
}

.hidden {
  display: none;
}

.qa-filter .filter-tags .tags,
.tags-wrapper .tags,
.related-tags-card .tags-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.qa-filter .filter-tags .tags .tag,
.tags-wrapper .tags .tag,
.related-tags-card .tags-wrapper .tag-pill {
  background-color: var(--border-muted);
  border: none;
  padding: 3px 12px;
  border-radius: 14px;
  color: var(--muted-strong);
  font-size: 14px;
}

.qa-filter .filter-title {
  color: var(--bo);
  font-size: 18px;
  font-weight: 500;
}

.qa-filter .filter-category {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-stats .stats {
  margin-bottom: 8px;
}

.qa-filter input[type="radio"] {
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--muted-gray);
  margin-right: 10px;
}

.qa-filter input[type="radio"]:checked {
  background-color: var(--accent);
  position: relative;
}

.qa-filter input[type="radio"]:checked+label {
  color: var(--accent);
}

.qa-filter input[type="radio"]:checked::after {
  content: "\F633";
  font-family: "bootstrap-icons";
  color: #fff;
  font-size: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* askQuestion modal */
#askQuestionModal .col-12:not(:last-child) {
  margin-bottom: 25px;
}

#askQuestionModal label {
  margin-bottom: 8px;
  color: var(--bo);
}

#askQuestionModal label:last-of-type {
  margin-bottom: 3px;
  color: var(--bo);
}

#askQuestionModal .addBtn {
  background-color: var(--bg-table-tap);
  border: 2px solid var(--border-muted);
  padding: 3px 12px;
  border-radius: 5px;
  color: var(--muted-strong);
}

#askQuestionModal p {
  font-size: 14px;
  color: var(--muted-strong);
  margin: 5px 0;
}

#askQuestionModal .tags-input-wrapper {
  position: relative;
}

#askQuestionModal .tags-input-wrapper i {
  position: absolute;
  top: 50%;
  left: 1%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
}

#askQuestionModal .tags-input-wrapper input {
  padding: 7px 28px;
}

#askQuestionModal .modal-header {
  border-bottom: 2px solid var(--border-muted);
}

#askQuestionModal .tags-wrapper p {
  margin: 10px 0;
}

#askQuestionModal .footer {
  margin-top: 23px;
  display: flex;
  justify-content: end;
  gap: 8px;
}

#askQuestionModal .cansel-btn {
  border: 2px solid var(--border-muted);
  background-color: var(--bg-table-tap);
  padding: 13px 25px;
  color: var(--bo);
  border-radius: 10px;
}

#askQuestionModal .post-btn,
.answer-card-area .post-btn {
  border: none;
  padding: 13px 25px;
  background-color: var(--accent);
  color: #fff;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.answer-card-area .post-btn:hover {
  transform: translateY(-2px);
}

.modal-content .modal-header .btn-close:focus {
  box-shadow: none;
  border: 0;
}

/* responsive */
@media (max-width:1070px) {
  .qa-stats-card {
    padding: 25px 14px;
  }
}

@media (max-width:992px) {
  .community-section {
    padding: 48px 16px;
    padding-bottom: 10px;
  }

  .qa-header {
    display: block;
  }

  .qa-search {
    margin-bottom: 10px;
  }

  .qa-stats-card {
    padding: 25px;
  }
}

@media (max-width:600px) {
  .qa-list .qa-card {
    flex-direction: column-reverse;
  }

  .qa-list .qa-card .qa-stats {
    flex-direction: row;
    justify-content: center;
    width: 100%;
  }

  .qa-actions .qa-ask-btn {
    padding: 14px 30px;
  }

  .modal-body {
    padding: 0 !important;
  }

  #askQuestionModal .tags-input-wrapper i {
    left: 3%;
  }

  #askQuestionModal .tags-input-wrapper input {
    padding: 7px 32px;
  }
}

@media (max-width:576px) {
  .modal.show {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }
}

/* ===================================== community-answer section ========================== */
.community-answer-hero {
  background-image:
    linear-gradient(to top,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0) 100%),
    url('../img/community.png');
  min-height: 60vh;
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.community-answer-content {
  padding: var(--section-padding);
  margin-top: -200px;
}

.community-answer-content .accepted-answer-badge {
  color: var(--accent);
}

.community-answer-content .qa-card .qa-stats {
  flex-direction: row-reverse;
  justify-content: start;
  padding: 0;
}

.community-answer-content hr {
  border: 1px solid var(--border-soft);
  margin: 0;
}

.community-section .answers-num {
  margin: 29px 0;
  color: var(--muted-strong);
}

.community-answers .answers-num {
  margin: 29px 0;
  color: var(--muted-strong);
}

.answer-card,
.answer-card-area,
.no-answer-card {
  background-color: var(--bg-table-tap);
  border-radius: 10px;
  border: 2px solid var(--border-muted);
  padding: 25px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
}

.answer-card.accepted {
  border: 1px solid var(--accent);
}

.answer-text {
  margin-bottom: 15px;
  color: var(--muted-mid);
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}

.card-footer .answers-name {
  color: var(--bo);
}

.card-footer .answers-job-title {
  color: var(--muted-strong);
  font-size: 12px;
}

.answer-card-area textarea {
  width: 100%;
  border-radius: 10px;
  border: 2px solid var(--border-soft);
  background-color: var(--border-muted);
  padding: 12px 16px;
  color: var(--muted-strong);
}

.answer-card-area .post-btn {
  margin-top: 15px;
  align-self: end;
}

.question-stats-card,
.related-tags-card {
  background-color: var(--bg-table-tap);
  border-radius: 10px;
  border: 2px solid var(--border-muted);
  padding: 25px;
  margin-bottom: 30px;
}

.question-stats-card .stats-title,
.related-tags-card .tags-title {
  font-size: 18px;
  color: var(--bo);
  font-weight: 500;
  margin-bottom: 15px;
}

.question-stats-card .stats-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.stats-label {
  font-size: 16px;
  color: var(--muted-mid);
}

.stats-value {
  font-size: 16px;
  color: var(--bo);
}

/* if question is solved */
.stats-value.solved {
  color: var(--accent);
}

/* if question is not solved */
.stats-value.open {
  color: var(--muted-strong);
}

.no-answer-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.no-answer-card i {
  font-size: 38px;
  color: var(--btn-muted-bg);
}

.no-answer-card p {
  font-size: 16px;
  color: var(--muted-strong);
}

/* responsive */
@media (max-width:992px) {
  .community-answer-content {
    padding: 48px 16px;
    padding-bottom: 10px;
  }
}

@media (max-width:800px) {

  .question-stats-card,
  .related-tags-card {
    padding: 25px 14px;
  }
}

@media (max-width:767px) {

  .question-stats-card,
  .related-tags-card {
    padding: 25px;
  }

  .community-answer-hero {
    min-height: 40vh;
  }
}

@media (max-width:390px) {
  .qa-list .qa-card .qa-stats .stats div {
    flex-direction: column;
    gap: 5px;
  }

  .community-answer-content .qa-card .qa-stats {
    justify-content: space-between;
  }
}

.modal-content .form-control.dark-input {
  transition: box-shadow 0.3s, border-color 0.3s;
}

.modal-content .form-control.dark-input:focus {
  border-color: var(--accent, #007bff);
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.15);
  background: #f8f9fa;
}

.modal-content .addBtn,
.modal-content .post-btn,
.modal-content .cansel-btn {
  transition: background 0.2s, color 0.2s, transform 0.15s;
  will-change: background, color, transform;
}

.modal-content .addBtn:hover,
.modal-content .post-btn:hover,
.modal-content .cansel-btn:hover {
  background: var(--accent, #007bff);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.modal-content .addBtn:active,
.modal-content .post-btn:active,
.modal-content .cansel-btn:active {
  transform: scale(0.97);
  background: #0056b3;
}

.modal-content .addBtn:focus,
.modal-content .post-btn:focus,
.modal-content .cansel-btn:focus {
  outline: 2px solid var(--accent, #007bff);
  outline-offset: 2px;
}

.modal-content .form-control.dark-input {
  border-radius: 8px;
}

.modal-content .addBtn {
  border-radius: 8px;
  background: #f1f3f6;
  color: #222;
  border: 1px solid #e0e0e0;
}

.modal-content .addBtn:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.modal-content .selected-tags .tag-pill {
  transition: background 0.2s, color 0.2s, transform 0.15s;
  cursor: pointer;
}

.modal-content .selected-tags .tag-pill:hover {
  background: var(--accent, #00c05d);
  color: #fff;
  transform: scale(1.08);
}

.modal-content .form-control.dark-input.typed-focus,
.modal-content .form-control.dark-input:focus {
  border-color: var(--accent, #007bff);
  background: #f8f9fa;
  box-shadow: 0 2px 0 0 var(--accent, #007bff);
  position: relative;
  z-index: 2;
}

.modal-content .form-control.dark-input.typed-focus::after,
.modal-content .form-control.dark-input:focus::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent, #007bff), var(--accent, #00c6ff));
  animation: underlineGrow 0.3s cubic-bezier(.4, 0, .2, 1) forwards;
}

@keyframes underlineGrow {
  from {
    width: 0;
    opacity: 0;
  }

  to {
    width: 100%;
    opacity: 1;
  }
}

.popular-tag.selected-popular,
.custom-tag.selected-popular,
.custom-tag {
  background: var(--accent, #00c6ff) !important;
  color: #fff !important;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

.popular-tag,
.custom-tag {
  cursor: pointer !important;
}

.popular-tag:hover,
.custom-tag:hover {
  background: #e6f3ff;
}

.qa-question a {
  color: var(--sub);
  text-decoration: none;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
  font-size: x-large;
}

.community-back-btn {
  color: var(--accent);
  font-size: 16px;
  text-decoration: none;
}

.qa-card {
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.qa-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.12), 0 1.5px 6px 0 rgba(0, 0, 0, 0.08);
  z-index: 2;
}

.dropdown-menu {
  background-color: var(--bg);
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.dropdown-menu .dropdown-item {
  transition: background-color 0.2s, color 0.2s;
}

.dropdown-menu .dropdown-item:hover {
  background-color: var(--accent);
  color: var(--bo);
}

.dropdown-menu .dropdown-item.active {
  background-color: var(--accent);
  color: var(--bo);
}

.product-img {
  height: 200px;
  width: 100%;
  object-fit: contain;
}

.product-link {
  text-decoration: none;
  color: inherit;
  text-align: center;
}

.product-link:hover .product-title {
  text-decoration: underline;
}

body,
.clinic-modal,
.card.clinic-modal {
  background: var(--bg) !important;
  color: var(--bo) !important;
  transition: background 0.4s cubic-bezier(.4, 0, .2, 1), color 0.4s cubic-bezier(.4, 0, .2, 1);
}

.swiper-sales .card-body {
  padding: 0px 20px 35px 20px !important;
}

.clinic-modal {
  border-radius: 18px;
  box-shadow: 0 8px 32px 0 rgba(31, 133, 123, 0.1);
  animation: fadeInUp 0.7s cubic-bezier(.4, 0, .2, 1);
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.clinic-modal .apply-btn {
  background: linear-gradient(90deg, var(--accent, #198754) 0%, #43cea2 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  width: auto;
  padding: 20px;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 12px 0 rgba(31, 38, 135, 0.10);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.clinic-modal.apply-btn:hover,
.form-control.dark-input {
  transition: box-shadow 0.25s, border-color 0.25s;
  border: 1.5px solid var(--accent);
  box-shadow: none;
}

.form-control.dark-input:hover {
  border-color: var(--accent, #43cea2);
  box-shadow: 0 0 0 2px rgba(67, 206, 162, 0.15);
}

.form-control.dark-input:focus {
  border-color: var(--accent, #43cea2);
  box-shadow: 0 0 0 4px rgba(67, 206, 162, 0.25);
  transform: scale(1.05);
  outline: none;
}

.apply-btn:focus {
  background: linear-gradient(90deg, #43cea2 0%, var(--accent, #198754) 100%);
  color: #fff;
  transform: scale(1.04);
  box-shadow: 0 4px 24px 0 rgba(31, 38, 135, 0.18);
}

.clinic-modal h4 {
  color: var(--accent);
}

.transition-chevron {
  transition: transform 0.3s cubic-bezier(.4, 0, .2, 1);
}

.rotate-chevron {
  transform: rotate(180deg);
}

/* Theme Toggle Animation */
#themeToggle,
#themeToggleMobile {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

#themeToggle:hover,
#themeToggleMobile:hover {
  transform: scale(1.1);
}

#themeToggle i,
#themeToggleMobile i {
  display: inline-block;
  transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#themeToggle.rotating i,
#themeToggleMobile.rotating i {
  transform: rotate(360deg);
}

/* Nav Items Hover Animation */
.navbar-nav>.nav-item>.nav-link {
  position: relative;
  transition: all 0.3s ease;
}

.navbar-nav>.nav-item>.nav-link:hover {
  transform: translateY(-2px);
}

.navbar-nav>.nav-item>.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease, left 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav>.nav-item>.nav-link:hover::after {
  width: 80%;
  left: 50%;
}

.navbar-nav>.nav-item>.nav-link.active::after {
  width: 80%;
  left: 50%;
}

/* Dropdown Menu Animation */
.dropdown-menu {
  animation: slideDown 0.3s ease;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-item {
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  transform: translateX(5px);
}

/* Subnav Links Hover Animation */
.sub-links .sub-link {
  position: relative;
  transition: all 0.3s ease;
}

.sub-links .sub-link:hover {
  transform: translateY(-2px);
}

.sub-links .sub-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease, left 0.3s ease;
  transform: translateX(-50%);
}

.sub-links .sub-link:hover::after,
.sub-links .sub-link.active::after {
  width: 80%;
  left: 50%;
}

.btn-accent:hover {
  background:
    linear-gradient(90deg, #00c05d, #00a651, #00c05d) 0 0/200% 100%,
    var(--accent);
  animation: accent-gradient-move 2s linear infinite;
  background-size: 200% 100%;
  background-position: 0% 50%;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.icon-btn .fa-bag-shopping {
  transition: transform 0.3s cubic-bezier(.68, -0.55, .27, 1.55);
}

.icon-btn:hover .fa-bag-shopping,
.icon-btn:focus .fa-bag-shopping {
  transform: scale(1.18) rotate(-12deg);
}

/* Cart Icon Animation */
.icon-btn .fa-bag-shopping {
  transition: transform 0.3s cubic-bezier(.68, -0.55, .27, 1.55);
}

.icon-btn:hover .fa-bag-shopping,
.icon-btn:focus .fa-bag-shopping {
  transform: scale(1.18) rotate(-12deg);
}

/* Search Box Animation */
.search-box {
  transition: box-shadow 0.3s cubic-bezier(.4, 0, .2, 1), background 0.3s cubic-bezier(.4, 0, .2, 1);
  border-radius: 2rem;
  background: #f8f9fa;
}

@keyframes searchFocusPulse {
  0% {
    box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.08);
  }

  50% {
    box-shadow: 0 4px 32px 0 rgba(13, 110, 253, 0.18);
  }

  100% {
    box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.08);
  }
}

.search-box:focus-within {
  box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.08);
  background: #fff;
  animation: searchFocusPulse 0.5s cubic-bezier(.4, 0, .2, 1);
  transform: scale(1.04);
  transition: transform 0.3s cubic-bezier(.68, -0.55, .27, 1.55), box-shadow 0.3s cubic-bezier(.4, 0, .2, 1), background 0.3s cubic-bezier(.4, 0, .2, 1);
}

.search-box .search-icon i {
  transition: color 0.3s, transform 0.3s cubic-bezier(.68, -0.55, .27, 1.55);
}

.search-box:focus-within .search-icon i,
.search-box:hover .search-icon i,
.search-box input:focus+.search-icon i {
  color: var(--accent, #0d6efd);
  transform: scale(1.18) rotate(-12deg);
}

.search-box input:focus {
  box-shadow: 0 0 0 2px var(--accent, #0d6efd);
  background: transparent;
  outline: none;
}

@media(max-width:1024px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 10px !important;
  }

  .sub-links .sub-link {
    font-size: 10px !important;
  }

  .sub-links {
    gap: 20px;
  }

  .nav-cta .btn {
    padding: 8px 12px;
    font-size: 10px !important;
    height: 30px;
  }

}

@media (min-width:1025px) and (max-width:1366px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 14px !important;
  }

  .sub-links .sub-link {
    font-size: 13px !important;
  }

  .nav-cta .btn {
    padding: 8px 12px;
    font-size: 13px !important;
    height: 35px;
  }


}

.out-of-stock-modal .out-of-stock-content {
  background: var(--bg, #fff);
  color: var(--bo, #222);
  border-radius: 22px;
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.18);
  padding: 2.7rem 2.2rem 2.2rem 2.2rem;
  max-width: 370px;
  text-align: center;
  position: relative;
  animation: popIn 0.5s;
  border: 2px solid var(--bo, #222);
}

.out-of-stock-modal .out-of-stock-content h2 {
  font-size: 2.1rem;
  margin-bottom: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.out-of-stock-modal .out-of-stock-content p {
  font-size: 1.13rem;
  margin-bottom: 1.7rem;
  line-height: 1.7;
}

.out-of-stock-modal .close-btn {
  position: absolute;
  top: 10px;
  right: 18px;
  background: none;
  border: none;
  color: var(--bo, #222);
  font-size: 1.7rem;
  cursor: pointer;
  transition: color 0.2s;
}

.out-of-stock-modal .close-btn:hover {
  color: var(--accent, #ff416c);
}

.out-of-stock-modal .out-of-stock-emoji {
  font-size: 3.2rem;
  margin-bottom: 0.7rem;
  animation: bounce 1.2s infinite;
  filter: drop-shadow(0 2px 8px rgba(255, 65, 108, 0.15));
}

@keyframes popIn {
  0% {
    transform: scale(0.7);
    opacity: 0;
  }

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

@keyframes fadeInBg {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  30% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(5px);
  }
}