@charset "UTF-8";
/**
 * Global Reset Styles
 */
a {
  text-decoration: none !important;
  color: inherit;
  transition: 0.2s;
}
a:hover {
  text-decoration: none !important;
}

p {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  outline: none !important;
  border: none;
  background: none;
  cursor: pointer;
}

:root {
  --green: #1B6B3A;
  --green-dark: #14502B;
  --green-light: #2E8B4E;
  --yellow: #F5C518;
  --red: #E53935;
  --gray-bg: #F5F5F5;
  --border: #E0E0E0;
  --text: #1A1A1A;
  --text-sm: #555;
  --text-muted: #888;
  --footer-bg: #0D3320;
  --gray-light: #C4C4C4;
}

body {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 14px;
  color: var(--text);
  background: #fff;
  margin: 0;
}

.nx-breadcrumb {
  padding: 12px 0 0;
}
.nx-breadcrumb * {
  font-size: 15px !important;
  color: black;
  font-weight: 600;
}
.nx-breadcrumb ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
}
.nx-breadcrumb li {
  display: flex;
  align-items: center;
}
.nx-breadcrumb li::before {
  content: "/";
  margin-right: 6px;
  color: var(--border);
}
.nx-breadcrumb li:first-child::before {
  display: none;
}
.nx-breadcrumb li a {
  text-decoration: none;
  transition: 0.2s;
}
.nx-breadcrumb li a:hover {
  color: var(--green);
}
.nx-breadcrumb li a i {
  font-size: 13px;
}
.nx-breadcrumb li span {
  color: var(--text-muted);
}
.nx-breadcrumb.nx-breadcrumb-light ol li,
.nx-breadcrumb.nx-breadcrumb-light ol li a,
.nx-breadcrumb.nx-breadcrumb-light ol li span,
.nx-breadcrumb.nx-breadcrumb-light ol li::before {
  color: rgba(255, 255, 255, 0.7);
}
.nx-breadcrumb.nx-breadcrumb-light ol li a:hover {
  color: var(--yellow);
}
.nx-breadcrumb.breadcrumb-absolute {
  position: absolute;
  top: 20px;
  left: 0;
  z-index: 10;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

/* ================================================
   NEXSOLAR — _header-style.scss
   ================================================ */
/* ---- TOPBAR ---- */
.topbar {
  background: var(--green);
  color: #fff;
  font-size: 13px;
  padding: 8px 0;
}
.topbar .top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.topbar .top-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.topbar .top-left .hl-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar .top-left .hl-item i {
  font-size: 15px;
}
.topbar .top-left .hl-item .hl-num {
  background: var(--yellow);
  color: var(--green);
  padding: 1px 6px;
  border-radius: var(--radius-sm, 4px);
  font-weight: 800;
  margin-left: 4px;
}
.topbar .top-right {
  display: flex;
  align-items: center;
  gap: 15px;
}
.topbar .top-right a {
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
  transition: 0.2s;
}
.topbar .top-right a:hover {
  opacity: 1;
  color: var(--yellow);
}

/* ---- MAIN HEADER ---- */
.site-header {
  background: #fff;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1040;
  padding: 0;
}
.site-header .container-xl, .site-header .container {
  position: static !important;
}

.hdr-inner {
  display: flex;
  align-items: center;
  gap: 15px;
  height: 80px;
  position: static !important;
}

.brand {
  flex-shrink: 0;
  height: 100%;
  display: flex;
  align-items: center;
}
.brand img {
  height: 64px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

/* ---- ALL CATS BUTTON ---- */
.dropdown-wrap {
  position: static;
  height: 100%;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.all-cats-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: none;
  border: none;
  color: var(--text);
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
  cursor: pointer;
  transition: 0.2s;
  padding: 0 10px;
  height: 100%;
}
.all-cats-btn i {
  color: var(--text-muted);
  font-size: 32px;
  margin-bottom: 2px;
}
.all-cats-btn:hover {
  color: var(--green);
}
.all-cats-btn:hover i {
  color: var(--green);
}
.all-cats-btn.active {
  color: var(--green);
}
.all-cats-btn.active i {
  color: var(--green);
}

/* ================================================
   MEGA DROPDOWN — Full-width panel
   ================================================ */
.mega-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: #fff;
  border-top: 3px solid var(--yellow);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.13);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 1039;
  pointer-events: none;
}
.mega-dropdown.open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.mega-dropdown .mega-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 8px 4px 12px;
}
.mega-dropdown .mega-grid {
  -moz-column-count: 5;
       column-count: 5;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
@media (max-width: 1199px) {
  .mega-dropdown .mega-grid {
    -moz-column-count: 4;
         column-count: 4;
  }
}
@media (max-width: 991px) {
  .mega-dropdown .mega-grid {
    -moz-column-count: 3;
         column-count: 3;
  }
}
@media (max-width: 768px) {
  .mega-dropdown .mega-grid {
    display: none !important;
  }
}
.mega-dropdown .mega-col {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  margin-bottom: 5px;
  padding-bottom: 5px;
  border-bottom: 1px solid #f4f4f4;
}
.mega-dropdown .mega-col .mega-title {
  margin: 0 0 10px 0;
}
.mega-dropdown .mega-col .mega-title a {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}
.mega-dropdown .mega-col .mega-title a:hover {
  color: var(--green);
}
.mega-dropdown .mega-col .mega-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
}
.mega-dropdown .mega-col .mega-list li a {
  display: block;
  padding: 4px 0;
  color: #555;
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.2s;
}
.mega-dropdown .mega-col .mega-list li a:hover {
  color: var(--green);
  padding-left: 6px;
}
.mega-dropdown .mega-footer {
  border-top: 1px solid #f0f0f0;
  padding: 12px 16px 0;
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
}
.mega-dropdown .mega-footer a {
  font-size: 13px;
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
}
.mega-dropdown .mega-footer a:hover {
  text-decoration: underline;
}

/* ---- DESKTOP NAV PILLS ---- */
.hdr-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
  overflow: hidden;
}
.hdr-nav .nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--text);
  text-decoration: none;
  transition: 0.2s;
  min-width: 72px;
  padding: 4px 6px;
  border-radius: 6px;
}
.hdr-nav .nav-item .nav-icon {
  width: 72px;
  height: 45px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.hdr-nav .nav-item .nav-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.hdr-nav .nav-item span {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  text-align: center;
}
.hdr-nav .nav-item:hover {
  color: var(--green);
  background: #f2faf5;
  transform: translateY(-2px);
}

/* ---- HEADER ACTIONS (search / user / cart) ---- */
.hdr-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}
.hdr-actions .search-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.hdr-actions .search-wrap .search-box {
  position: absolute;
  top: calc(100% + 15px);
  right: 0;
  width: 320px;
  background: #fff;
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 1.5px solid var(--border);
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1100;
}
.hdr-actions .search-wrap .search-box.open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.hdr-actions .search-wrap .search-box form {
  display: flex;
  background: #f8f9fa;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #eee;
}
.hdr-actions .search-wrap .search-box form input {
  flex: 1;
  border: none;
  background: none;
  padding: 10px 15px;
  font-size: 14px;
  color: var(--text);
  outline: none !important;
}
.hdr-actions .search-wrap .search-box form button {
  background: var(--green);
  color: #fff;
  border: none;
  padding: 0 15px;
  cursor: pointer;
  transition: 0.2s;
}
.hdr-actions .search-wrap .search-box form button:hover {
  background: var(--green-dark);
}
.hdr-actions .action-link {
  color: var(--text-muted);
  font-size: 20px;
  position: relative;
  text-decoration: none;
  transition: 0.2s;
}
.hdr-actions .action-link:hover {
  color: var(--green);
}
.hdr-actions .action-link .badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hdr-actions {
  /* MINI AVATAR & USER NAME */
}
.hdr-actions .user-link, .hdr-actions .login-link {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.hdr-actions .user-link .mini-avatar, .hdr-actions .login-link .mini-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1.5px solid var(--green);
}
.hdr-actions .user-link .user-name, .hdr-actions .login-link .user-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--green-dark);
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hdr-actions .user-link .text-sm, .hdr-actions .login-link .text-sm {
  font-size: 13px;
}
.hdr-actions .user-link .fw-700, .hdr-actions .login-link .fw-700 {
  font-weight: 700;
}
.hdr-actions .user-link:hover, .hdr-actions .login-link:hover {
  color: var(--green);
}
.hdr-actions .user-link:hover .user-name, .hdr-actions .login-link:hover .user-name {
  color: var(--green);
}

/* ---- MOBILE MENU BUTTON ---- */
.mob-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--text);
  background: none;
  border: none;
  padding: 0 5px;
}

/* ================================================
   MOBILE SIDEBAR
   ================================================ */
.mob-sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2000;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
.mob-sidebar-overlay.open {
  visibility: visible;
  opacity: 1;
}

.mob-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 480px;
  height: 100%;
  background: #fff;
  z-index: 2001;
  display: flex;
  flex-direction: column;
  box-shadow: 6px 0 20px rgba(0, 0, 0, 0.15);
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}
.mob-sidebar.open {
  transform: translateX(0);
}
.mob-sidebar {
  /* Header sidebar */
}
.mob-sidebar .mob-sidebar-header {
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--yellow);
  background: var(--green);
}
.mob-sidebar .mob-sidebar-header .mob-logo img {
  height: 40px;
  width: auto;
}
.mob-sidebar .mob-sidebar-header .mob-close {
  font-size: 22px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.85;
  padding: 4px;
  line-height: 1;
  border-radius: 4px;
  transition: 0.2s;
}
.mob-sidebar .mob-sidebar-header .mob-close:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.15);
}
.mob-sidebar {
  /* Body sidebar */
}
.mob-sidebar .mob-sidebar-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mob-sidebar .mob-sidebar-body .mob-nav ul {
  list-style: none;
  margin: 0;
  padding: 8px 0;
}
.mob-sidebar .mob-sidebar-body .mob-nav ul li {
  border-bottom: 1px solid #f3f3f3;
}
.mob-sidebar .mob-sidebar-body .mob-nav ul li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: 0.2s;
}
.mob-sidebar .mob-sidebar-body .mob-nav ul li a i {
  font-size: 16px;
  color: var(--green);
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}
.mob-sidebar .mob-sidebar-body .mob-nav ul li a:hover {
  color: var(--green);
  background: #f2faf5;
  padding-left: 26px;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1200px) {
  .hdr-nav {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .site-header {
    padding: 0;
  }
  .hdr-inner {
    height: 60px;
    gap: 10px;
  }
  .brand img {
    height: 44px;
  }
}
/* ---- NEWS CARD ---- */
.ncard {
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  height: 100%;
}
.ncard img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.ncard .nbody {
  padding: 12px;
}
.ncard .ndate {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 5px;
}
.ncard .ntitle {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ---- BUTTONS ---- */
.btn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green);
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  padding: 7px 24px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  transition: 0.2s;
}
.btn-more:hover {
  background: var(--green-dark);
  color: #fff;
}

.badge-hl {
  background: var(--yellow);
  color: #1A1A1A;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 12px;
}

/* ---- RESPONSIVE GRID HELPERS (5-4-3-2) ---- */
.row-cols-5 {
  display: flex;
  flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px;
}
.row-cols-5 > [class*=col-] {
  padding-right: 10px;
  padding-left: 10px;
  flex: 0 0 20%;
  max-width: 20%;
}

@media (max-width: 1199px) {
  .row-cols-md-4 > [class*=col-] {
    flex: 0 0 25%;
    max-width: 25%;
  }
}
@media (max-width: 991px) {
  .row-cols-sm-3 > [class*=col-] {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
}
@media (max-width: 575px) {
  .row-cols-2 > [class*=col-] {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
/* ---- NAV ICON FA6 (thay cho img) ---- */
.hdr-nav .nav-item .nav-icon-fa {
  font-size: 22px;
  color: var(--green);
  margin-bottom: 2px;
  display: block;
  text-align: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
}

/* ---- MEGA DROPDOWN – icon spacing ---- */
.mega-dropdown ul li a i {
  width: 18px;
  text-align: center;
  color: var(--green);
  margin-right: 8px;
  flex-shrink: 0;
}

/* ---- SECTION TITLE BAR ---- */
.nx-sec-bar, .cat-showcase .cat-showcase-header, section .sec-bar, .nx-section-title span, .nx-section-title h2 {
  position: relative;
  text-align: center;
  color: var(--yellow);
  font-size: 20px;
  font-weight: 800;
  padding: 10px 180px;
  display: inline-block;
  text-transform: uppercase;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(31, 143, 90, 0.85) 30%, #1F8F5A 50%, rgba(31, 143, 90, 0.85) 70%, rgba(255, 255, 255, 0) 100%);
  backdrop-filter: blur(4px);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 880px) {
  .nx-sec-bar, .cat-showcase .cat-showcase-header, section .sec-bar, .nx-section-title span, .nx-section-title h2 {
    padding: 10px;
    font-size: 16px;
    width: 100%;
  }
}

.nx-section-title {
  display: flex;
  justify-content: center;
  margin: 20px 0 30px;
  width: 100%;
}
.nx-section-title span, .nx-section-title h2 {
  width: 100%;
  max-width: 800px;
  font-size: 26px !important;
  letter-spacing: 1px;
  padding: 14px 40px;
  border: none;
  margin: 0;
  line-height: 1.2;
}

/* ---- PRODUCT CARD ---- */
.pcard {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  position: relative;
  transition: 0.25s;
  height: 100%;
  text-align: center;
}
.pcard:hover {
  border-color: var(--green);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}
.pcard:hover .pimg {
  transform: scale(1.05);
}
.pcard .pimg-link {
  display: block;
}
.pcard .pimg-wrap {
  overflow: hidden;
  aspect-ratio: 1/1;
  background: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pcard .pimg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 15px;
  transition: 0.4s ease;
  display: block;
}
.pcard .pbody {
  padding: 12px 10px 15px;
}
.pcard .pname {
  font-size: 14px;
  color: #111;
  font-weight: 700;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 40px;
  margin-bottom: 8px;
}
.pcard .pname a {
  color: inherit;
  text-decoration: none;
}
.pcard .pname a:hover {
  color: var(--green);
}
.pcard .pprice-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.pcard .pprice {
  color: var(--red);
  font-weight: 800;
  font-size: 12px;
}
.pcard .pold {
  color: #999;
  font-size: 12px;
  text-decoration: line-through;
}

/* ---- SALE BADGE (FLAG STYLE) ---- */
.pbadge {
  position: absolute;
  top: 0;
  left: 12px;
  width: 52px;
  z-index: 2;
  gap: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  pointer-events: none;
}
.pbadge::before {
  content: "";
  display: block;
  width: 52px;
  aspect-ratio: 7/10;
  background: url("/images/sale-flag.png") center/cover no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.pbadge .pbadge-label,
.pbadge .pbadge-pct {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  width: 42px;
}
.pbadge .pbadge-label {
  font-size: 8px;
  font-weight: 700;
  white-space: nowrap;
  text-transform: uppercase;
  padding-top: 15px;
}
.pbadge .pbadge-pct {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1;
}

/* ---- STOCK BADGE ---- */
.pbadge-stock {
  position: absolute;
  top: 0;
  right: 0;
  background: #999;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-bottom-left-radius: 10px;
  z-index: 2;
}

/* ---- PRODUCT SLIDER (Swiper) ---- */
.sl-wrap {
  position: relative;
  padding: 0 10px;
}
.sl-wrap .product-list-swiper {
  overflow: hidden;
  padding: 5px 0;
}
.sl-wrap .product-item {
  height: auto;
  flex-shrink: 0;
  width: 100%;
}
.sl-wrap .sl-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 10;
  transition: 0.2s;
}
.sl-wrap .sl-btn.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: #ccc;
}
.sl-wrap .sl-btn:hover:not(.swiper-button-disabled) {
  background: var(--green-dark);
}
.sl-wrap .sl-prev {
  left: -16px;
}
.sl-wrap .sl-next {
  right: -16px;
}

/* ---- HERO BANNER ---- */
.hero-wrap {
  line-height: 0;
  position: relative;
  overflow: hidden;
  background: #c8e6c9;
}
.hero-wrap img {
  width: 100%;
  display: block;
  aspect-ratio: 1400/400;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-wrap .hero-prev, .hero-wrap .hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  z-index: 5;
  transition: 0.2s;
}
.hero-wrap .hero-prev:hover, .hero-wrap .hero-next:hover {
  background: rgba(0, 0, 0, 0.6);
}
.hero-wrap .hero-prev {
  left: 10px;
}
.hero-wrap .hero-next {
  right: 10px;
}
.hero-wrap .hero-swiper {
  width: 100%;
  height: 100%;
}
.hero-wrap .swiper-slide {
  line-height: 0;
}
.hero-wrap .swiper-slide a {
  display: block;
}
.hero-wrap .swiper-slide img {
  width: 100%;
  display: block;
  aspect-ratio: 1400/400;
  -o-object-fit: cover;
     object-fit: cover;
}

.banner-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 8px 0 4px;
}
.banner-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: var(--border);
  cursor: pointer;
  transition: 0.2s;
}
.banner-dots .dot.on {
  background: var(--green);
  width: 22px;
}

/* ---- SECTION ---- */
section {
  padding: 30px 0;
}
section .sec-bar {
  margin-bottom: 30px;
}
section .sec-bar i {
  display: none;
}
section .sec-wrap {
  padding: 10px 0;
  border: none;
}
section {
  /* ---- SPECIAL SECTION: SUGGESTIONS (Vibrant Red-Orange Gradient) ---- */
}
section.sec-selling {
  background: linear-gradient(90deg, #d31010 0%, #ff5722 50%, #fbc02d 100%);
  position: relative;
  overflow: hidden;
  padding: 50px 0;
}
section.sec-selling .container-xl {
  position: relative;
  z-index: 2;
}
section.sec-selling .sec-suggestion-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  color: #fff;
}
section.sec-selling .sec-suggestion-header .header-content h3 {
  font-size: 16px;
  font-weight: 800;
  margin: 0;
  color: #fff;
  letter-spacing: 0.5px;
}
section.sec-selling .sec-suggestion-header .header-content p {
  font-size: 14px;
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}
section.sec-selling .btn-more {
  background: #fff;
  color: #d31010;
  font-weight: 800;
  padding: 10px 35px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
section.sec-selling .btn-more:hover {
  background: #111;
  color: #fff;
  transform: translateY(-3px);
}
section.sec-selling .pcard {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
section.sec-selling .pcard:hover {
  border-color: #ff5722;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}
section.sec-selling .pcard:hover .pname a {
  color: #d31010;
}
section.sec-selling .sl-btn {
  background: rgba(255, 255, 255, 0.2) !important;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  color: #fff !important;
}
section.sec-selling .sl-btn:hover:not(.swiper-button-disabled) {
  background: #fff !important;
  color: #d31010 !important;
  transform: translateY(-50%) scale(1.1);
}
section.sec-alt-bg {
  background: var(--gray-bg);
}

/* ---- COMPONENT: BTN-MORE ---- */
.btn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--gray-light);
  color: #333;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 28px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: 0.2s;
  text-transform: none;
  text-decoration: none;
}
.btn-more:hover {
  background: #b0b0b0;
  color: #000;
}

/* ---- NLMT LIST ---- */
.nlmt-img {
  width: 100%;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.nlmt-list h5 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--green);
  margin: 14px 0 6px;
}
.nlmt-list h5:first-child {
  margin-top: 0;
}
.nlmt-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nlmt-list ul li {
  padding: 2px 0 2px 14px;
  position: relative;
  font-size: 13px;
  color: var(--text-sm);
}
.nlmt-list ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--green);
}
.nlmt-list .note {
  font-size: 12px;
  color: var(--text-muted);
  padding-left: 14px;
  margin: 1px 0;
}
.nlmt-list .note::before {
  content: "+";
  color: var(--green);
  font-weight: 700;
  margin-right: 4px;
}

/* ---- VIDEO SECTION ---- */
.video-sec {
  background: #111;
  padding: 40px 0;
}
.video-sec .vid-box {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: url("https://placehold.co/900x420/111111/333333?text=VIDEO+THUMBNAIL") center/cover no-repeat;
  aspect-ratio: 16/6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-sec .play-btn {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--green);
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: 0.2s;
}
.video-sec .play-btn:hover {
  transform: scale(1.1);
}

/* ---- TITLE CHUNG ---- */
.nsec-title {
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--green-dark);
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 22px;
}
.nsec-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
}

/* ---- FOOTER STYLES ---- */
.ft {
  background: var(--footer-bg);
  color: rgba(255, 255, 255, 0.78);
  padding: 44px 0 20px;
}
.ft .ft-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.ft .ft-brand .ft-co-name {
  color: var(--yellow);
  font-weight: 800;
  font-size: 15px;
  line-height: 1.25;
  text-transform: uppercase;
}
.ft p {
  font-size: 12.5px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
}
.ft h6 {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding-bottom: 8px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.ft ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ft ul.ft-links-simple li a::before {
  display: none;
}
.ft ul li {
  margin-bottom: 7px;
}
.ft ul li a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.2s;
  text-decoration: none;
}
.ft ul li a::before {
  content: "•";
  color: #fff;
  font-size: 14px;
  margin-right: 4px;
}
.ft ul li a:hover {
  color: var(--yellow);
  padding-left: 4px;
}
.ft a {
  text-decoration: none !important;
}
.ft .ftcon {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 13px;
}
.ft .ftcon i {
  color: var(--yellow);
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}
.ft .ftcon span, .ft .ftcon div {
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}
.ft .srow {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.ft .srow.mt-0 {
  margin-top: 0;
}
.ft .srow a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: 0.2s;
}
.ft .srow a:hover {
  background: var(--yellow);
  color: var(--text);
}
.ft .paytags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 8px;
}
.ft .paytags span {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}
.ft .ft-map iframe {
  width: 100%;
  height: 155px;
  border: none;
  border-radius: 6px;
}

.ft-bot {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  padding: 12px 0;
  text-align: center;
}
.ft-bot a {
  color: rgba(255, 255, 255, 0.65);
}
.ft-bot a:hover {
  color: var(--yellow);
}

/* ---- STICKY BUTTONS ---- */
.sticky {
  position: fixed;
  right: 14px;
  bottom: 90px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sticky a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
  transition: 0.2s;
}
.sticky a:hover {
  transform: scale(1.1);
}
.sticky .sz {
  background: #0068FF;
}
.sticky .sph {
  background: var(--red);
  animation: pulseRing 0.9s infinite alternate;
}
.sticky .sm {
  background: #0084FF;
}
.sticky .st {
  background: var(--green);
}

@keyframes pulseRing {
  to {
    transform: scale(1.1);
  }
}
@keyframes movingGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* ═══════════════════════════════════════════════════════════
    TRANG DANH MỤC SẢN PHẨM
    ═══════════════════════════════════════════════════════════ */
/* ── Category Hero ──────────────────────────────────────── */
.cat-hero {
  background: #fff;
  padding: 0;
  margin-bottom: 0;
}
.cat-hero .cat-banner {
  width: 100%;
  aspect-ratio: 1027/244;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cat-hero .cat-banner img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.cat-hero .cat-hero-inner {
  position: relative;
  padding: 20px 0 10px;
}
.cat-hero .nx-breadcrumb {
  margin-bottom: 12px;
}
.cat-hero .nx-breadcrumb ol li a:hover {
  color: var(--green);
}
.cat-hero .cat-title-wrap {
  text-align: center;
  background: radial-gradient(circle, var(--green) 0%, var(--green-light) 100%);
  padding: 12px 20px;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin: 10px 0;
}
.cat-hero .cat-title-wrap .cat-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--yellow);
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
}
.cat-hero .cat-title-wrap .cat-title i {
  font-size: 22px;
  margin-right: 10px;
  color: #fff;
}
.cat-hero .cat-title-wrap .cat-desc {
  color: #fff;
  font-size: 14px;
  margin: 6px auto 0;
  max-width: 600px;
  opacity: 0.9;
}

/* ── Category Body ──────────────────────────────────────── */
.cat-body {
  padding: 24px 0 40px;
}

/* ── Category Showcase ──────────────────────────────────── */
.cat-showcase {
  margin-bottom: 36px;
  text-align: center;
}
.cat-showcase .cat-showcase-header {
  margin: 0 auto 32px;
  border-radius: 8px;
  display: inline-block;
  min-width: 320px;
}
@media (max-width: 768px) {
  .cat-showcase .cat-showcase-header {
    min-width: calc(100% - 30px);
    padding: 8px 15px;
  }
}
.cat-showcase .cat-showcase-header h2 {
  margin: 0;
  color: inherit;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-shadow: inherit;
}
@media (max-width: 768px) {
  .cat-showcase .cat-showcase-header h2 {
    font-size: 18px;
  }
}
.cat-showcase .cat-showcase-content {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  border-bottom: 3.5px solid var(--green);
  padding-top: 10px; /* Adjusted padding */
}
.cat-showcase .cat-grid-row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}
.cat-showcase .cat-item-box {
  flex: 1;
  max-width: 180px; /* Max width for desktop */
  display: flex;
  flex-direction: column;
  align-items: center;
  height: auto;
  transition: 0.3s;
  position: relative; /* For dropdown positioning */
}
@media (max-width: 768px) {
  .cat-showcase .cat-item-box {
    max-width: 24%; /* Approx 4 items on mobile */
  }
}
.cat-showcase .cat-item-box:hover .cat-icon-item .icon-img, .cat-showcase .cat-item-box.active .cat-icon-item .icon-img {
  opacity: 1;
  filter: none;
  transform: translateY(-8px);
  border-color: var(--green);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}
.cat-showcase .cat-item-box:hover .cat-tab-btn, .cat-showcase .cat-item-box.active .cat-tab-btn {
  background: var(--green);
  color: #fff;
}
.cat-showcase .cat-item-box {
  /* Dropdown specific styles */
}
.cat-showcase .cat-item-box.cat-dropdown-trigger:hover .cat-dropdown-menu {
  display: block;
}
.cat-showcase .cat-item-box .cat-icon-item {
  text-align: center;
  margin-bottom: 12px;
  transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cat-showcase .cat-item-box .cat-icon-item .icon-img {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px solid transparent;
  border-radius: 12px;
  transition: 0.3s;
  opacity: 0.4;
}
@media (max-width: 768px) {
  .cat-showcase .cat-item-box .cat-icon-item .icon-img {
    width: 64px;
    height: 64px;
  }
}
.cat-showcase .cat-item-box .cat-icon-item .icon-img img {
  max-width: 65px;
  max-height: 65px;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 4px;
}
@media (max-width: 768px) {
  .cat-showcase .cat-item-box .cat-icon-item .icon-img img {
    max-width: 45px;
    max-height: 45px;
  }
}
.cat-showcase .cat-item-box .cat-icon-item .icon-img i {
  font-size: 32px;
  color: var(--text-muted);
}
.cat-showcase .cat-item-box .cat-icon-item .icon-img.more-icon {
  background: #f0f0f0;
}
.cat-showcase .cat-item-box .cat-icon-item .icon-img.more-icon i {
  font-size: 24px;
}
.cat-showcase .cat-item-box .cat-tab-btn {
  width: 100%;
  background: #D9D9D9;
  color: #222;
  padding: 8px 5px;
  border-radius: 4px 4px 0 0;
  font-weight: 700;
  font-size: 11.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.2s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  letter-spacing: -0.2px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .cat-showcase .cat-item-box .cat-tab-btn {
    font-size: 10px;
    padding: 6px 3px;
  }
}
.cat-showcase .cat-item-box .cat-tab-btn:hover:not(.active) {
  background: var(--border);
}
.cat-showcase .cat-item-box .cat-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  min-width: 260px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 8px 8px;
  z-index: 1000;
  padding: 10px 0;
  text-align: left;
}
.cat-showcase .cat-item-box .cat-dropdown-menu .cat-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 15px;
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s ease;
}
.cat-showcase .cat-item-box .cat-dropdown-menu .cat-dropdown-item img {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 4px;
  background: #f9f9f9;
}
.cat-showcase .cat-item-box .cat-dropdown-menu .cat-dropdown-item:hover {
  background: #f0f9f4;
  color: var(--green);
}

/* ── Toolbar ──────────────────────────────────────────────── */
.cat-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
  gap: 12px;
  flex-wrap: wrap;
}
.cat-toolbar .cat-count {
  font-size: 13px;
  color: var(--text-muted);
}
.cat-toolbar .cat-count strong {
  color: var(--text);
  font-weight: 700;
}
.cat-toolbar .sort-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-sm);
}
.cat-toolbar .sort-wrap label {
  white-space: nowrap;
}
.cat-toolbar .sort-wrap label i {
  color: var(--green);
  margin-right: 4px;
}
.cat-toolbar .sort-wrap .sort-sel {
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 13px;
  color: var(--text);
  background: #fff;
  cursor: pointer;
  transition: 0.2s;
}
.cat-toolbar .sort-wrap .sort-sel:focus {
  outline: none;
  border-color: var(--green);
}

/* ── Product Grid ───────────────────────────────────────── */
.product-grid .pcard-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.product-grid .pcard-link .pcard {
  cursor: pointer;
  height: 100%;
}

@media (min-width: 1200px) {
  .col-xl-2-4 {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

/* ── Pagination ─────────────────────────────────────────── */
.nx-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.nx-pagination .pg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 6px;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
}
.nx-pagination .pg-btn:hover:not(.disabled):not(.on) {
  border-color: var(--green);
  color: var(--green);
}
.nx-pagination .pg-btn.on {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.nx-pagination .pg-btn.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ── Empty State ────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}
.empty-state i {
  font-size: 52px;
  display: block;
  margin-bottom: 16px;
  color: var(--border);
}
.empty-state p {
  font-size: 16px;
  margin-bottom: 20px;
}

/* ═══════════════════════════════════════════════════════════
   TRANG CHI TIẾT SẢN PHẨM
   ═══════════════════════════════════════════════════════════ */
.pd-wrap {
  padding: 20px 0 32px;
}

/* ── Gallery ──────────────────────────────────────────────── */
.pd-gallery .pd-main-img {
  position: relative;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pd-gallery .pd-main-img img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 12px;
  transition: 0.3s;
}
.pd-gallery .pd-main-img:hover img {
  transform: scale(1.04);
}
.pd-gallery .pd-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.pd-gallery .pd-thumbs .pd-thumb {
  width: 70px;
  height: 70px;
  border: 2px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.2s;
  flex-shrink: 0;
}
.pd-gallery .pd-thumbs .pd-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 4px;
}
.pd-gallery .pd-thumbs .pd-thumb:hover, .pd-gallery .pd-thumbs .pd-thumb.on {
  border-color: var(--green);
}

/* ── Product Info ─────────────────────────────────────────── */
.pd-info {
  padding-top: 4px;
}
.pd-info .pd-cat-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f0f9f4;
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  text-decoration: none;
  margin-bottom: 12px;
  transition: 0.2s;
}
.pd-info .pd-cat-tag i {
  font-size: 12px;
}
.pd-info .pd-cat-tag:hover {
  background: var(--green);
  color: #fff;
}
.pd-info .pd-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .pd-info .pd-name {
    font-size: 18px;
  }
}
.pd-info .pd-sku {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.pd-info .pd-sku strong {
  color: var(--text-sm);
}
.pd-info {
  /* Price box */
}
.pd-info .pd-price-box {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.pd-info .pd-price-box .pd-price-inner {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.pd-info .pd-price-box .pd-price-sale {
  font-size: 30px;
  font-weight: 800;
  color: var(--red);
}
@media (max-width: 576px) {
  .pd-info .pd-price-box .pd-price-sale {
    font-size: 24px;
  }
}
.pd-info .pd-price-box .pd-price-sale sup {
  font-size: 16px;
  vertical-align: super;
}
.pd-info .pd-price-box .pd-price-old {
  font-size: 16px;
  color: #aaa;
  text-decoration: line-through;
}
.pd-info .pd-price-box .pd-price-contact {
  font-size: 18px;
  font-weight: 700;
  color: var(--green);
}
.pd-info .pd-price-box .pd-price-contact i {
  margin-right: 6px;
}
.pd-info .pd-price-box .btn-login-price {
  background: var(--yellow);
  color: #222;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.pd-info .pd-price-box .btn-login-price i {
  font-size: 14px;
  color: var(--green-dark);
}
.pd-info .pd-price-box .btn-login-price:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-2px);
}
.pd-info .pd-price-box .btn-login-price:hover i {
  color: #fff;
}
.pd-info .pd-price-box .btn-login-price:active {
  transform: scale(0.97);
}
@media (max-width: 576px) {
  .pd-info .pd-price-box .btn-login-price {
    width: 100%;
    justify-content: center;
    padding: 10px;
  }
}
.pd-info .pd-short-desc {
  font-size: 14px;
  color: var(--text-sm);
  line-height: 1.6;
  margin-bottom: 20px;
  padding: 12px 14px;
  background: var(--gray-bg);
  border-left: 3px solid var(--green);
  border-radius: 0 6px 6px 0;
}
.pd-info {
  /* Quantity + Cart */
}
.pd-info .pd-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.pd-info .pd-actions .qty-wrap {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.pd-info .pd-actions .qty-wrap .qty-btn {
  width: 38px;
  height: 44px;
  border: none;
  background: var(--gray-bg);
  color: var(--text);
  font-size: 14px;
  cursor: pointer;
  transition: 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pd-info .pd-actions .qty-wrap .qty-btn:hover {
  background: var(--border);
}
.pd-info .pd-actions .qty-wrap .qty-input {
  width: 52px;
  height: 44px;
  border: none;
  border-left: 1.5px solid var(--border);
  border-right: 1.5px solid var(--border);
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  outline: none;
}
.pd-info .pd-actions .btn-addcart {
  flex: 1;
  min-width: 180px;
  height: 44px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: 0.2s;
}
.pd-info .pd-actions .btn-addcart i {
  font-size: 16px;
}
.pd-info .pd-actions .btn-addcart:hover {
  background: var(--green-dark);
}
.pd-info .pd-actions .btn-addcart:active {
  transform: scale(0.98);
}
.pd-info {
  /* Contact CTAs */
}
.pd-info .pd-contact-row {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.pd-info .pd-contact-row .pd-cta {
  flex: 1;
  min-width: 140px;
  height: 40px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s;
}
.pd-info .pd-contact-row .pd-cta i {
  font-size: 15px;
}
.pd-info .pd-contact-row .pd-cta.pd-cta-phone {
  background: #fff8e1;
  color: #b8860b;
  border: 1.5px solid var(--yellow);
}
.pd-info .pd-contact-row .pd-cta.pd-cta-phone:hover {
  background: var(--yellow);
  color: #222;
}
.pd-info .pd-contact-row .pd-cta.pd-cta-zalo {
  background: #e8f5ff;
  color: #0068ff;
  border: 1.5px solid #0068ff;
}
.pd-info .pd-contact-row .pd-cta.pd-cta-zalo:hover {
  background: #0068ff;
  color: #fff;
}
.pd-info {
  /* Meta badges */
}
.pd-info .pd-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.pd-info .pd-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-sm);
  background: var(--gray-bg);
  padding: 4px 10px;
  border-radius: 20px;
}
.pd-info .pd-meta span i {
  color: var(--green);
}

/* ── Content Tabs ─────────────────────────────────────────── */
.pd-tabs {
  margin: 16px 0 32px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.pd-tabs .pd-tab-nav {
  display: flex;
  border-bottom: 1.5px solid var(--border);
  background: var(--gray-bg);
}
.pd-tabs .pd-tab-nav .pd-tab-btn {
  flex: 1;
  padding: 13px 20px;
  border: none;
  background: none;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-bottom: 3px solid transparent;
}
.pd-tabs .pd-tab-nav .pd-tab-btn i {
  font-size: 14px;
}
.pd-tabs .pd-tab-nav .pd-tab-btn:hover {
  color: var(--green);
}
.pd-tabs .pd-tab-nav .pd-tab-btn.on {
  color: var(--green);
  background: #fff;
  border-bottom-color: var(--green);
}
.pd-tabs .pd-tab-panel {
  display: none;
  padding: 24px;
  background: #fff;
}
.pd-tabs .pd-tab-panel.on {
  display: block;
}

/* ── Rich content từ editor ───────────────────────────────── */
.nx-content {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-sm);
}
.nx-content h1, .nx-content h2, .nx-content h3, .nx-content h4 {
  color: var(--green-dark);
  font-weight: 700;
  margin: 20px 0 10px;
}
.nx-content ul, .nx-content ol {
  padding-left: 20px;
  margin-bottom: 12px;
}
.nx-content li {
  margin-bottom: 4px;
}
.nx-content img {
  max-width: 100%;
  border-radius: 6px;
  margin: 10px 0;
}
.nx-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0;
}
.nx-content th, .nx-content td {
  border: 1px solid var(--border);
  padding: 8px 12px;
  font-size: 13px;
}
.nx-content th {
  background: var(--gray-bg);
  font-weight: 700;
}

/* ── Spec table ───────────────────────────────────────────── */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.spec-table tr:nth-child(even) {
  background: var(--gray-bg);
}
.spec-table th, .spec-table td {
  border: 1px solid var(--border);
  padding: 10px 14px;
  text-align: left;
  vertical-align: top;
}
.spec-table th {
  width: 35%;
  font-weight: 700;
  color: var(--text-sm);
  background: #f8f8f8;
}
.spec-table td {
  color: var(--text);
}

.spec-group-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--green-dark);
  text-transform: uppercase;
  margin: 14px 0 6px;
  padding-bottom: 4px;
  border-bottom: 1.5px solid var(--green);
  display: inline-block;
}
.spec-group-title:first-child {
  margin-top: 0;
}

/* ── Related Products ─────────────────────────────────────── */
.pd-related {
  padding: 0 0 40px;
}
.pd-related .sec-bar {
  margin-bottom: 20px;
}

/* ═══════════════════════════════════════════════════════════
   2-COLUMN CONTENT (Mô tả + Thông số)
   ═══════════════════════════════════════════════════════════ */
.pd-content-section {
  margin-bottom: 32px;
}

.pd-col-box {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
}

.pd-col-header {
  background: var(--green);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pd-col-header i {
  font-size: 14px;
}

.pd-col-body {
  padding: 20px;
  background: #fff;
}

/* ═══════════════════════════════════════════════════════════
   PHẢN HỒI KHÁCH HÀNG (Reviews)
   ═══════════════════════════════════════════════════════════ */
.pd-reviews-section {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 32px;
}

.review-item {
  display: flex;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
}
.review-item:last-child {
  border-bottom: none;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  text-transform: uppercase;
}

.review-content {
  flex: 1;
  min-width: 0;
}
.review-content .review-author {
  margin-bottom: 4px;
}
.review-content .review-author strong {
  font-size: 14px;
  color: var(--text);
  margin-right: 10px;
}
.review-content .review-date {
  font-size: 12px;
  color: var(--text-muted);
}
.review-content .review-text {
  font-size: 13px;
  color: var(--text-sm);
  line-height: 1.6;
  margin: 4px 0 8px;
}

.review-reply {
  display: flex;
  gap: 10px;
  background: #f8f8f8;
  border-radius: 8px;
  padding: 12px;
  margin: 8px 0;
  border-left: 3px solid var(--green);
}
.review-reply .review-reply-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-reply .review-reply-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.review-reply .review-reply-content {
  flex: 1;
  font-size: 13px;
}
.review-reply .review-reply-content strong {
  color: var(--green);
  margin-right: 8px;
}
.review-reply .review-reply-content p {
  margin: 4px 0 0;
  color: var(--text-sm);
  line-height: 1.5;
}

.review-reply-btn {
  background: none;
  border: none;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  transition: 0.2s;
}
.review-reply-btn:hover {
  color: var(--green-dark);
  text-decoration: underline;
}

/* Review Form */
.review-form {
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}
.review-form .review-input {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  font-family: inherit;
  resize: vertical;
  outline: none;
  transition: 0.2s;
  margin-bottom: 10px;
}
.review-form .review-input::-moz-placeholder {
  color: var(--text-muted);
}
.review-form .review-input::placeholder {
  color: var(--text-muted);
}
.review-form .review-input:focus {
  border-color: var(--green);
}
.review-form .review-form-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.review-form .review-name, .review-form .review-email {
  flex: 1;
  min-width: 140px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  transition: 0.2s;
}
.review-form .review-name::-moz-placeholder, .review-form .review-email::-moz-placeholder {
  color: var(--text-muted);
}
.review-form .review-name::placeholder, .review-form .review-email::placeholder {
  color: var(--text-muted);
}
.review-form .review-name:focus, .review-form .review-email:focus {
  border-color: var(--green);
}
.review-form .review-submit-btn {
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.2s;
}
.review-form .review-submit-btn:hover {
  background: var(--green-dark);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .cat-hero .cat-title {
    font-size: 20px;
  }
  .pd-info .pd-name {
    font-size: 17px;
  }
  .pd-info .pd-price-box .pd-price-sale {
    font-size: 24px;
  }
  .pd-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .pd-actions .btn-addcart {
    min-width: unset;
  }
  .pd-gallery .pd-thumbs .pd-thumb {
    width: 58px;
    height: 58px;
  }
  .review-form .review-form-row {
    flex-direction: column;
  }
}
/* ═══════════════════════════════════════════════════════════
   TRANG TIN TỨC (listing)
   ═══════════════════════════════════════════════════════════ */
/* ── News Hero Banner ──────────────────────────────────── */
.news-hero {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  padding: 28px 0 24px;
}
.news-hero .news-hero-title {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin: 10px 0 4px;
}
.news-hero .news-hero-title i {
  font-size: 22px;
  margin-right: 10px;
  color: var(--yellow);
}
.news-hero .news-hero-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin: 0;
}

/* ── News Grid ─────────────────────────────────────────── */
.news-body {
  padding: 28px 0 48px;
}

.news-grid .ncard {
  transition: 0.25s;
  border: 1px solid transparent;
}
.news-grid .ncard:hover {
  border-color: var(--green);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
}
.news-grid .ncard .ncard-img-wrap {
  overflow: hidden;
}
.news-grid .ncard .ncard-img-wrap img {
  transition: transform 0.35s ease;
}
.news-grid .ncard .ncard-img-wrap:hover img {
  transform: scale(1.05);
}
.news-grid .ncard .nbody {
  padding: 14px 16px 18px;
}
.news-grid .ncard .ndate {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.news-grid .ncard .ndate i {
  margin-right: 4px;
}
.news-grid .ncard .ntitle {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  min-height: 45px;
  margin-bottom: 6px;
}
.news-grid .ncard .ntitle a {
  color: var(--text);
  text-decoration: none;
  transition: 0.2s;
}
.news-grid .ncard .ntitle a:hover {
  color: var(--green);
}
.news-grid .ncard .ndesc {
  font-size: 13px;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 10px;
}
.news-grid .ncard .nread-more {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  transition: 0.2s;
}
.news-grid .ncard .nread-more i {
  font-size: 11px;
  margin-left: 4px;
  transition: 0.2s;
}
.news-grid .ncard .nread-more:hover {
  color: var(--green-dark);
}
.news-grid .ncard .nread-more:hover i {
  margin-left: 8px;
}

/* ── Category Navigation ─────────────────────────────────── */
.nx-cat-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 auto 32px;
  padding: 0;
  list-style: none;
}
.nx-cat-nav .cat-nav-item {
  display: inline-block;
  padding: 6px 18px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 25px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.nx-cat-nav .cat-nav-item:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}
.nx-cat-nav .cat-nav-item.active {
  background: var(--green);
  border-color: var(--green);
  color: var(--yellow);
  box-shadow: 0 4px 12px rgba(31, 143, 90, 0.25);
}
@media (max-width: 768px) {
  .nx-cat-nav {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 4px 0 12px;
    margin-bottom: 24px;
    -webkit-overflow-scrolling: touch;
  }
  .nx-cat-nav::-webkit-scrollbar {
    display: none;
  }
  .nx-cat-nav .cat-nav-item {
    font-size: 13px;
    padding: 5px 14px;
  }
}

/* ═══════════════════════════════════════════════════════════
   TRANG CHI TIẾT BÀI VIẾT (post)
   ═══════════════════════════════════════════════════════════ */
.post-single {
  padding: 24px 0 48px;
}
.post-single .post-header {
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.post-single .post-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .post-single .post-title {
    font-size: 20px;
  }
}
.post-single .post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
}
.post-single .post-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.post-single .post-meta i {
  color: var(--green);
  font-size: 13px;
}
.post-single .post-meta a {
  color: var(--text-sm);
  text-decoration: none;
}
.post-single .post-meta a:hover {
  color: var(--green);
}
.post-single .post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.post-single .post-tags .tag-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1.5px solid var(--border);
  font-size: 12px;
  color: var(--text-sm);
  text-decoration: none;
  transition: 0.2s;
}
.post-single .post-tags .tag-item:hover {
  border-color: var(--green);
  color: var(--green);
}

/* ── Related Posts ──────────────────────────────────────── */
.related-posts {
  margin-top: 32px;
}
.related-posts .related-posts-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--green);
  display: inline-block;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .news-hero .news-hero-title {
    font-size: 20px;
  }
  .post-single .post-title {
    font-size: 19px;
  }
}
/* ═══════════════════════════════════════════════════════════
   TRANG LIÊN HỆ
   ═══════════════════════════════════════════════════════════ */
/* ── Contact Hero ──────────────────────────────────────── */
.contact-hero {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  padding: 28px 0 24px;
}
.contact-hero .contact-hero-title {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin: 10px 0 4px;
}
.contact-hero .contact-hero-title i {
  font-size: 22px;
  margin-right: 10px;
  color: var(--yellow);
}

/* ── Contact Body ──────────────────────────────────────── */
.contact-body {
  padding: 32px 0 48px;
}

/* ── Info Cards ────────────────────────────────────────── */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 36px;
}

.contact-info-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: 0.25s;
}
.contact-info-card:hover {
  border-color: var(--green);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.contact-info-card .ci-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-card .ci-icon i {
  color: #fff;
  font-size: 18px;
}
.contact-info-card .ci-body .ci-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.contact-info-card .ci-body .ci-value {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}
.contact-info-card .ci-body .ci-value a {
  color: var(--green);
  text-decoration: none;
  font-weight: 700;
}
.contact-info-card .ci-body .ci-value a:hover {
  color: var(--green-dark);
}

/* ── Section Title ─────────────────────────────────────── */
.contact-section-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--green-dark);
  text-transform: uppercase;
  text-align: center;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 28px;
}
.contact-section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
}

.contact-form {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 28px;
}
.contact-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 768px) {
  .contact-form .form-grid {
    grid-template-columns: 1fr;
  }
}
.contact-form .form-group,
.contact-form .contact-form-group {
  margin-bottom: 16px;
}
.contact-form .form-group.full-width,
.contact-form .contact-form-group.full-width {
  grid-column: 1/-1;
}
.contact-form .form-group label,
.contact-form .form-group .contact-label,
.contact-form .contact-form-group label,
.contact-form .contact-form-group .contact-label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-sm);
  margin-bottom: 6px;
}
.contact-form .form-group input, .contact-form .form-group select, .contact-form .form-group textarea,
.contact-form .form-group .contact-form-input,
.contact-form .contact-form-group input,
.contact-form .contact-form-group select,
.contact-form .contact-form-group textarea,
.contact-form .contact-form-group .contact-form-input {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 16px;
  font-family: inherit;
  color: var(--text);
  outline: none;
  transition: 0.2s;
}
.contact-form .form-group input::-moz-placeholder, .contact-form .form-group select::-moz-placeholder, .contact-form .form-group textarea::-moz-placeholder, .contact-form .form-group .contact-form-input::-moz-placeholder, .contact-form .contact-form-group input::-moz-placeholder, .contact-form .contact-form-group select::-moz-placeholder, .contact-form .contact-form-group textarea::-moz-placeholder, .contact-form .contact-form-group .contact-form-input::-moz-placeholder {
  color: var(--text-muted);
}
.contact-form .form-group input::placeholder, .contact-form .form-group select::placeholder, .contact-form .form-group textarea::placeholder,
.contact-form .form-group .contact-form-input::placeholder,
.contact-form .contact-form-group input::placeholder,
.contact-form .contact-form-group select::placeholder,
.contact-form .contact-form-group textarea::placeholder,
.contact-form .contact-form-group .contact-form-input::placeholder {
  color: var(--text-muted);
}
.contact-form .form-group input:focus, .contact-form .form-group select:focus, .contact-form .form-group textarea:focus,
.contact-form .form-group .contact-form-input:focus,
.contact-form .contact-form-group input:focus,
.contact-form .contact-form-group select:focus,
.contact-form .contact-form-group textarea:focus,
.contact-form .contact-form-group .contact-form-input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(27, 107, 58, 0.1);
}
.contact-form .form-group textarea,
.contact-form .form-group textarea.contact-form-input,
.contact-form .contact-form-group textarea,
.contact-form .contact-form-group textarea.contact-form-input {
  resize: vertical;
  min-height: 120px;
}
.contact-form .form-submit {
  text-align: center;
  margin-top: 20px;
}
.contact-form .form-submit .btn-submit,
.contact-form .form-submit .contact-button {
  background: var(--green);
  color: #fff;
  border: none;
  padding: 14px 48px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contact-form .form-submit .btn-submit i,
.contact-form .form-submit .contact-button i {
  font-size: 14px;
}
.contact-form .form-submit .btn-submit:hover,
.contact-form .form-submit .contact-button:hover {
  background: var(--green-dark);
}
.contact-form .form-submit .btn-submit:active,
.contact-form .form-submit .contact-button:active {
  transform: scale(0.98);
}
.contact-form .form-submit .btn-submit.button-loading,
.contact-form .form-submit .contact-button.button-loading {
  opacity: 0.7;
  pointer-events: none;
}
.contact-form .contact-message {
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 500;
}
.contact-form .contact-success-message {
  background: #e8f5e9;
  color: var(--green-dark);
}
.contact-form .contact-error-message {
  background: #fdecea;
  color: #c62828;
}

/* ── Wrapper on About page ─────────────────────────────── */
.nx-contact-form-wrap {
  max-width: 900px;
  margin: 0 auto 48px;
}

/* ── Contact Map ───────────────────────────────────────── */
.contact-map {
  margin-top: 36px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.contact-map iframe {
  width: 100%;
  height: 350px;
  border: none;
  display: block;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .contact-hero .contact-hero-title {
    font-size: 20px;
  }
  .contact-form {
    padding: 20px;
  }
  .contact-map iframe {
    height: 250px;
  }
}
/* ── NEW CONTACT REDESIGN (GRID) ───────────────────────── */
.nx-contact-section {
  padding: 40px 0 60px;
}
.nx-contact-section .nx-contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}
@media (max-width: 991px) {
  .nx-contact-section .nx-contact-grid {
    grid-template-columns: 1fr;
  }
}
.nx-contact-section .nx-contact-map {
  background: #f8f8f8;
}
.nx-contact-section .nx-contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: none;
  display: block;
}
@media (max-width: 991px) {
  .nx-contact-section .nx-contact-map iframe {
    min-height: 350px;
  }
}
.nx-contact-section .nx-contact-form-side {
  background-color: #c8d9d0;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.nx-contact-section .nx-contact-form-side .contact-form-title {
  color: var(--green-dark);
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 36px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.nx-contact-section .nx-contact-form-side .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
@media (max-width: 575px) {
  .nx-contact-section .nx-contact-form-side .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.nx-contact-section .nx-contact-form-side .form-group {
  margin-bottom: 24px;
}
.nx-contact-section .nx-contact-form-side .form-group label {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--text-sm);
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 0.8px;
  opacity: 0.7;
}
.nx-contact-section .nx-contact-form-side .form-group input, .nx-contact-section .nx-contact-form-side .form-group textarea,
.nx-contact-section .nx-contact-form-side .form-group .contact-form-input {
  width: 100%;
  background: transparent !important;
  border: none !important;
  border-bottom: 1.5px solid rgba(0, 0, 0, 0.15) !important;
  border-radius: 0 !important;
  padding: 10px 0 !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  color: var(--text) !important;
  transition: 0.3s !important;
  box-shadow: none !important;
}
.nx-contact-section .nx-contact-form-side .form-group input::-moz-placeholder, .nx-contact-section .nx-contact-form-side .form-group textarea::-moz-placeholder, .nx-contact-section .nx-contact-form-side .form-group .contact-form-input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.25) !important;
  text-transform: uppercase;
}
.nx-contact-section .nx-contact-form-side .form-group input::placeholder, .nx-contact-section .nx-contact-form-side .form-group textarea::placeholder,
.nx-contact-section .nx-contact-form-side .form-group .contact-form-input::placeholder {
  color: rgba(0, 0, 0, 0.25) !important;
  text-transform: uppercase;
}
.nx-contact-section .nx-contact-form-side .form-group input:focus, .nx-contact-section .nx-contact-form-side .form-group textarea:focus,
.nx-contact-section .nx-contact-form-side .form-group .contact-form-input:focus {
  border-bottom-color: var(--green) !important;
  outline: none !important;
}
.nx-contact-section .nx-contact-form-side .form-group textarea {
  min-height: 100px;
  resize: none;
}
.nx-contact-section .nx-contact-form-side .form-submit {
  text-align: left;
  margin-top: 10px;
}
.nx-contact-section .nx-contact-form-side .form-submit .btn-submit {
  background-color: #f1ae1b !important;
  color: var(--green-dark) !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  padding: 12px 36px !important;
  border-radius: 4px !important;
  border: none !important;
  min-width: 160px;
  transition: 0.25s;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: 0 4px 0 rgb(181, 131, 17);
}
.nx-contact-section .nx-contact-form-side .form-submit .btn-submit:hover {
  background-color: #ffb81c !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 0 rgb(181, 131, 17);
}
.nx-contact-section .nx-contact-form-side .form-submit .btn-submit:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 rgb(181, 131, 17);
}

/* ═══════════════════════════════════════════════════════════
   ABOUT HERO
   ═══════════════════════════════════════════════════════════ */
.about-hero {
  width: 100%;
  overflow: hidden;
}
.about-hero img {
  width: 100%;
  max-height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT INTRO
   ═══════════════════════════════════════════════════════════ */
.about-intro {
  margin-bottom: 36px;
}
.about-intro .about-intro-img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-intro .about-intro-text {
  font-size: 18px;
}
.about-intro .about-intro-text p {
  margin-bottom: 20px;
  line-height: 1.6;
}
.about-intro .about-intro-text ul {
  padding-left: 20px;
  list-style-type: disc !important;
}
.about-intro .about-intro-text ul li {
  margin-bottom: 12px;
}
.about-intro .about-intro-text ul li::marker {
  color: var(--green);
  font-size: 1.25em;
}

/* ═══════════════════════════════════════════════════════════
   COMMITMENTS
   ═══════════════════════════════════════════════════════════ */
.about-commitments {
  margin-bottom: 36px;
}

.commit-card {
  text-align: start;
  padding: 10px;
  background: transparent;
  border: none;
  height: 100%;
  transition: 0.25s;
}
.commit-card:hover {
  transform: translateY(-5px);
}
.commit-card .commit-icon {
  width: 135px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}
.commit-card .commit-icon img {
  width: 100%;
  height: auto;
  display: block;
}
.commit-card h4 {
  font-size: 18px;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 12px;
}
.commit-card ul {
  display: inline-block;
  text-align: left;
  list-style-type: none;
  padding: 0;
  font-size: 18px;
  color: var(--text);
  padding-left: 10px;
}
.commit-card ul li {
  margin-bottom: 6px;
  position: relative;
}
.commit-card ul li::before {
  content: "•";
  color: #000;
  font-weight: bold;
  margin-right: 8px;
}

/* ═══════════════════════════════════════════════════════════
   WHY CHOOSE NEXSOLAR (BACKGROUND VERSION)
   ═══════════════════════════════════════════════════════════ */
.about-why-bg-section {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 80px 0;
  color: #fff;
  position: relative;
}
.about-why-bg-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 50, 0, 0.7);
  z-index: 1;
}
.about-why-bg-section .container-xl {
  position: relative;
  z-index: 2;
  max-width: 1000px;
}
.about-why-bg-section .why-header {
  margin-bottom: 40px;
}
.about-why-bg-section .why-header .why-title {
  color: var(--yellow);
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 15px;
}
.about-why-bg-section .why-header .why-subtitle-box {
  display: inline-block;
  padding: 8px 24px;
}
.about-why-bg-section .why-header .why-subtitle-box .why-subtitle {
  margin: 0;
  font-size: 18px;
  color: #eee;
}

.why-grid {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.why-grid .why-item {
  width: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 40px 30px;
  transition: 0.3s;
}
.why-grid .why-item:hover {
  background: rgba(255, 255, 255, 0.05);
}
.why-grid .why-item .why-item-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}
.why-grid .why-item .why-icon-wrap {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}
.why-grid .why-item .why-icon-wrap img {
  width: 100%;
  height: auto;
}
.why-grid .why-item .why-content h5, .why-grid .why-item .why-content p {
  font-size: 18px;
  color: #fff;
}
.why-grid .why-item .why-content h5 {
  margin-bottom: 6px;
  font-weight: 800;
}

@media (max-width: 768px) {
  .why-grid .why-item {
    width: 100%;
  }
  .about-why-bg-section .why-header .why-title {
    font-size: 28px;
  }
}
/* ═══════════════════════════════════════════════════════════
   QUOTE — Calculator Form
   ═══════════════════════════════════════════════════════════ */
.quote-calc {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 28px;
  margin-bottom: 36px;
}

.quote-col-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--green);
}

.quote-field {
  margin-bottom: 14px;
}
.quote-field label {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-sm);
  margin-bottom: 5px;
}

.quote-input {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 18px;
  font-family: inherit;
  outline: none;
  transition: 0.2s;
}
.quote-input:focus {
  border-color: var(--green);
}

.quote-select {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 18px;
  font-family: inherit;
  outline: none;
  background: #fff;
  cursor: pointer;
  transition: 0.2s;
}
.quote-select:focus {
  border-color: var(--green);
}

.quote-range {
  flex: 1;
  accent-color: var(--green);
  cursor: pointer;
}

.quote-range-val {
  font-weight: 700;
  font-size: 14px;
  color: var(--green);
  min-width: 40px;
}

/* ═══════════════════════════════════════════════════════════
   QUOTE — Package Cards
   ═══════════════════════════════════════════════════════════ */
.package-card {
  border: 2px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: 0.25s;
}
.package-card:hover {
  border-color: var(--green);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.package-card.featured {
  border-color: var(--green);
  box-shadow: 0 0 0 2px var(--green);
}
.package-card .package-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--yellow);
  color: #1a1a1a;
  font-size: 28px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 10px;
}
.package-card .package-name {
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
  padding: 0 16px;
}
.package-card .package-body {
  padding: 0 20px;
  flex: 1;
  font-size: 18px;
  color: var(--text-sm);
  line-height: 1.6;
}
.package-card .package-body p {
  margin-bottom: 10px;
}
.package-card .package-body strong {
  color: var(--text);
}
.package-card .package-footer {
  background: var(--green);
  color: #fff;
  text-align: center;
  padding: 16px 20px;
  margin-top: auto;
}
.package-card .package-price-label {
  font-size: 13px;
  font-weight: 600;
}
.package-card .package-price {
  font-size: 22px;
  font-weight: 900;
  color: var(--yellow);
}

@media (max-width: 768px) {
  .nx-section-title span {
    font-size: 16px;
    padding: 8px 24px;
  }
  .about-why-section {
    padding: 24px 16px;
  }
  .quote-calc {
    padding: 20px;
  }
  .commit-card {
    padding: 20px 16px;
  }
}
/* ── Section wrapper ────────────────────────────────────── */
.qs-section {
  padding: 64px 0 80px;
  background: #f6f8fa;
}

.qs-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Intro ──────────────────────────────────────────────── */
.qs-intro {
  text-align: center;
  margin-bottom: 40px;
}

.qs-intro-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 900;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 10px;
}
.qs-intro-title span {
  color: var(--green);
}

.qs-intro-sub {
  font-size: 17px;
  color: var(--text-muted);
}

/* ── Step indicator ─────────────────────────────────────── */
.qs-steps-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 36px;
}

.qs-dot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 800;
  border: 2.5px solid var(--border);
  color: var(--text-muted);
  background: #fff;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}
.qs-dot.active {
  border-color: var(--yellow);
  background: var(--yellow);
  color: #1a1a1a;
  box-shadow: 0 4px 14px rgba(241, 196, 15, 0.4);
}
.qs-dot.done {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.qs-dot-line {
  flex: 1;
  min-width: 40px;
  max-width: 80px;
  height: 2px;
  background: var(--border);
  transition: background 0.3s;
}
.qs-dot-line.done {
  background: var(--green);
}

/* ── Card ───────────────────────────────────────────────── */
.qs-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 36px 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  animation: qsFadeUp 0.35s ease;
}
@media (max-width: 576px) {
  .qs-card {
    padding: 24px 20px;
  }
}

@keyframes qsFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.qs-card-header {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f2f5;
}

.qs-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(241, 196, 15, 0.15);
  color: #8a6d00;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.qs-card-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 4px;
}

.qs-card-desc {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0;
}

/* ── Form fields ────────────────────────────────────────── */
.qs-field {
  margin-bottom: 0;
}
.qs-field > label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-sm);
  margin-bottom: 12px;
}
.qs-field > label i {
  font-size: 16px;
  width: 20px;
  text-align: center;
}
.qs-field .qs-req {
  color: #e53935;
  margin-left: 2px;
}

.qs-hint {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 5px;
}

.qs-input {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 16px;
  font-family: inherit;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: 0.2s;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}
.qs-input::-moz-placeholder {
  color: #bbb;
}
.qs-input::placeholder {
  color: #bbb;
}
.qs-input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.12);
}
.qs-input[type=number]::-webkit-inner-spin-button, .qs-input[type=number]::-webkit-outer-spin-button {
  opacity: 1;
}

select.qs-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%237A8BA0' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 22px;
  padding-right: 44px;
  cursor: pointer;
}

/* ── Radio card grid ─────────────────────────────────────── */
.qs-radio-grid {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.qs-radio-card {
  cursor: pointer;
  flex: 1;
  min-width: 100px;
}
.qs-radio-card input[type=radio] {
  display: none;
}
.qs-radio-card .qs-rc-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 18px 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-sm);
  transition: all 0.25s ease;
  background: #fff;
  height: 100%;
}
.qs-radio-card .qs-rc-icon {
  font-size: 24px;
  color: var(--text-muted);
  transition: inherit;
}
.qs-radio-card .qs-rc-icon i {
  display: block;
}
.qs-radio-card .qs-rc-label {
  font-size: 13px;
  font-weight: 700;
  transition: inherit;
}
.qs-radio-card:hover .qs-rc-inner {
  border-color: var(--green);
  background: rgba(39, 174, 96, 0.04);
}
.qs-radio-card:hover .qs-rc-inner .qs-rc-icon {
  color: var(--green);
  transform: translateY(-3px);
}
.qs-radio-card.active .qs-rc-inner {
  border-color: var(--green);
  background: rgba(39, 174, 96, 0.08);
  color: var(--green-dark);
  box-shadow: 0 4px 12px rgba(39, 174, 96, 0.12);
}
.qs-radio-card.active .qs-rc-inner .qs-rc-icon {
  color: var(--green);
  transform: scale(1.1);
}
.qs-radio-card.active .qs-rc-inner .qs-rc-label {
  font-weight: 800;
}

/* ── Check card list ─────────────────────────────────────── */
.qs-checklist {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(146px, 1fr));
  gap: 10px;
}

.qs-check-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-sm);
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
  background: #fff;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.qs-check-card i {
  font-size: 15px;
  color: var(--text-muted);
  transition: inherit;
  opacity: 0.7;
}
.qs-check-card:hover {
  border-color: var(--green);
  background: rgba(39, 174, 96, 0.04);
}
.qs-check-card:hover i {
  color: var(--green);
  opacity: 1;
  transform: scale(1.1);
}
.qs-check-card.active {
  border-color: var(--green);
  background: rgba(39, 174, 96, 0.08);
  color: var(--green-dark);
  box-shadow: 0 4px 10px rgba(39, 174, 96, 0.08);
}
.qs-check-card.active i {
  color: var(--green);
  opacity: 1;
  transform: scale(1.15);
}

/* ── Nav row ─────────────────────────────────────────────── */
.qs-nav-row {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid #f0f2f5;
}

.qs-btn-primary, .qs-btn-ghost, .qs-btn-analyze {
  border: none;
  border-radius: 10px;
  padding: 13px 28px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.2s;
}

.qs-btn-primary {
  background: var(--green);
  color: #fff;
}
.qs-btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.qs-btn-ghost {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-sm);
}
.qs-btn-ghost:hover {
  border-color: var(--green);
  color: var(--green);
}

.qs-btn-analyze {
  background: linear-gradient(135deg, var(--yellow) 0%, #f59e0b 100%);
  color: #1a1a1a;
  box-shadow: 0 4px 16px rgba(241, 196, 15, 0.35);
}
.qs-btn-analyze:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(241, 196, 15, 0.45);
}

/* ── Summary ────────────────────────────────────────────── */
.qs-summary {
  background: #f8f9fa;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.qs-sum-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  font-size: 15px;
  border-bottom: 1px solid var(--border);
}
.qs-sum-row:last-child {
  border-bottom: none;
}
.qs-sum-row span {
  color: var(--text-muted);
}
.qs-sum-row strong {
  color: var(--text);
}

/* ── Loading ────────────────────────────────────────────── */
.qs-loading {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  padding: 64px 20px;
  text-align: center;
}

/* Solar spinner */
.qs-solar-spinner {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  position: relative;
}

.qs-sun-core {
  width: 34px;
  height: 34px;
  background: var(--yellow);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: qsPulse 1.2s ease-in-out infinite;
}

@keyframes qsPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.18);
  }
}
.qs-ray {
  position: absolute;
  width: 3px;
  height: 14px;
  background: var(--yellow);
  border-radius: 2px;
  left: calc(50% - 1.5px);
  top: 0;
  transform-origin: 50% 36px;
  opacity: 0.65;
  animation: qsRayPulse 1.6s ease-in-out infinite;
}
.qs-ray:nth-child(2) {
  transform: rotate(45deg);
  animation-delay: 0.2s;
}
.qs-ray:nth-child(3) {
  transform: rotate(90deg);
  animation-delay: 0.4s;
}
.qs-ray:nth-child(4) {
  transform: rotate(135deg);
  animation-delay: 0.6s;
}
.qs-ray:nth-child(5) {
  transform: rotate(180deg);
  animation-delay: 0.8s;
}
.qs-ray:nth-child(6) {
  transform: rotate(225deg);
  animation-delay: 1s;
}
.qs-ray:nth-child(7) {
  transform: rotate(270deg);
  animation-delay: 1.2s;
}
.qs-ray:nth-child(8) {
  transform: rotate(315deg);
  animation-delay: 1.4s;
}

@keyframes qsRayPulse {
  0%, 100% {
    opacity: 0.65;
    transform-origin: 50% 36px;
  }
  50% {
    opacity: 0.2;
  }
}
.qs-loading-text {
  font-size: 17px;
  font-weight: 700;
  color: var(--yellow, #f1c40f);
  margin-bottom: 8px;
}

.qs-loading-sub {
  font-size: 14px;
  color: var(--text-muted);
}

/* ── Result card ─────────────────────────────────────────── */
.qs-result-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  animation: qsFadeUp 0.4s ease;
}

.qs-result-head {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  padding: 28px 36px;
}
.qs-result-head h3 {
  font-size: 18px;
  font-weight: 800;
  margin: 10px 0 4px;
}
@media (max-width: 576px) {
  .qs-result-head {
    padding: 22px 20px;
  }
}

.qs-result-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 14px;
  border-radius: 20px;
}

.qs-result-sub {
  font-size: 13px;
  opacity: 0.82;
  margin-bottom: 12px;
}

.qs-sys-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 7px 16px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
}

/* ── Metrics grid ─────────────────────────────────────────── */
.qs-metrics {
  padding: 28px 36px 0;
}
@media (max-width: 576px) {
  .qs-metrics {
    padding: 20px 20px 0;
  }
}

.qs-metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 600px) {
  .qs-metric-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 380px) {
  .qs-metric-grid {
    grid-template-columns: 1fr;
  }
}

.qs-metric {
  border: 1.5px solid var(--border);
  border-radius: 13px;
  padding: 16px 18px;
  transition: 0.2s;
}
.qs-metric:hover {
  border-color: rgba(39, 174, 96, 0.3);
}
.qs-metric--green {
  border-color: rgba(39, 174, 96, 0.25);
  background: rgba(39, 174, 96, 0.03);
}
.qs-metric--green .qs-metric-value {
  color: var(--green);
}

.qs-metric-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.qs-metric-label i {
  font-size: 14px;
  opacity: 0.85;
}

.qs-metric-value {
  font-size: 22px;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}

.qs-metric-unit {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ── Storage ─────────────────────────────────────────────── */
.qs-storage {
  padding: 20px 36px 0;
}
@media (max-width: 576px) {
  .qs-storage {
    padding: 16px 20px 0;
  }
}

.qs-storage-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.qs-storage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 460px) {
  .qs-storage-grid {
    grid-template-columns: 1fr;
  }
}

.qs-storage-opt {
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
}
.qs-storage-opt strong {
  display: block;
  font-size: 18px;
  font-weight: 900;
  color: var(--text);
  margin: 6px 0 4px;
}
.qs-storage-opt span {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.qs-storage-opt--rec {
  border-color: var(--yellow);
  background: rgba(241, 196, 15, 0.05);
}
.qs-storage-opt--rec strong {
  color: var(--green-dark);
}

.qs-rec-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8a6d00;
}

/* ── Payback ─────────────────────────────────────────────── */
.qs-payback {
  padding: 16px 36px;
}
@media (max-width: 576px) {
  .qs-payback {
    padding: 14px 20px;
  }
}

.qs-payback-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.qs-payback-bar {
  height: 7px;
  background: var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.qs-payback-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--yellow));
  border-radius: 10px;
  transition: width 1.2s ease;
}

.qs-payback-note {
  font-size: 13px;
  color: var(--green);
  font-weight: 600;
  margin-top: 6px;
}

.qs-divider {
  border: none;
  border-top: 1.5px solid #f0f2f5;
  margin: 0 36px;
}
@media (max-width: 576px) {
  .qs-divider {
    margin: 0 20px;
  }
}

/* ── Advice ──────────────────────────────────────────────── */
.qs-advice-box {
  margin: 20px 36px;
  background: #fffdf0;
  border: 1.5px solid #f5d77e;
  border-radius: 12px;
  padding: 20px 22px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
}
@media (max-width: 576px) {
  .qs-advice-box {
    margin: 16px 20px;
  }
}

.qs-advice-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #8a6d00;
  margin-bottom: 12px;
}

/* ── Note ────────────────────────────────────────────────── */
.qs-note {
  margin: 0 36px 20px;
  background: #fff9f0;
  border-left: 4px solid var(--yellow);
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  display: flex;
  gap: 12px;
}
.qs-note i {
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}
@media (max-width: 576px) {
  .qs-note {
    margin: 0 20px 16px;
  }
}

/* ── CTA row ─────────────────────────────────────────────── */
.qs-cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0 36px 28px;
}
@media (max-width: 576px) {
  .qs-cta-row {
    grid-template-columns: 1fr;
    padding: 0 20px 22px;
  }
}

.qs-cta-primary, .qs-cta-ghost {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 12px;
  padding: 15px 24px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s;
  text-decoration: none;
}

.qs-cta-primary {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
}
.qs-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(39, 174, 96, 0.35);
  color: #fff;
}

.qs-cta-ghost {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text);
}
.qs-cta-ghost:hover {
  border-color: var(--green);
  color: var(--green);
}

/* ── Packages section ────────────────────────────────────── */
.qs-packages-section {
  padding: 64px 0 80px;
  background: #fff;
}

/* Package card reuse from _about.scss but with extra tweaks */
.qs-packages-section .package-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
}
.qs-packages-section .package-card:hover {
  border-color: var(--green);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.09);
  transform: translateY(-4px);
}
.qs-packages-section .package-card.featured {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(39, 174, 96, 0.12);
}
.qs-packages-section .package-card .package-badge {
  background: var(--yellow);
  color: #1a1a1a;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 5px 18px;
  text-align: center;
}
.qs-packages-section .package-card.featured .package-badge {
  background: var(--green);
  color: #fff;
}
.qs-packages-section .package-card .package-icon {
  text-align: center;
  font-size: 34px;
  color: var(--green);
  margin: 18px 0 6px;
}
.qs-packages-section .package-card .package-name {
  text-align: center;
  font-size: 19px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--green);
  padding: 0 20px;
}
.qs-packages-section .package-card .package-sub {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  padding: 4px 20px 14px;
}
.qs-packages-section .package-card .package-body {
  padding: 0 20px;
  flex: 1;
}
.qs-packages-section .package-card .package-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
}
.qs-packages-section .package-card .package-body li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text);
  padding: 7px 0;
  border-bottom: 1px dashed var(--border);
}
.qs-packages-section .package-card .package-body li:last-child {
  border-bottom: none;
}
.qs-packages-section .package-card .package-body li i {
  color: var(--green);
  font-size: 12px;
  flex-shrink: 0;
}
.qs-packages-section .package-card .package-rate {
  font-size: 14px;
  color: var(--text-sm);
  padding: 10px 0;
  border-top: 1px solid var(--border);
}
.qs-packages-section .package-card .package-rate i {
  color: var(--yellow);
  margin-right: 5px;
}
.qs-packages-section .package-card .package-rate strong {
  color: var(--green-dark);
}
.qs-packages-section .package-card .package-footer {
  background: var(--green);
  color: #fff;
  text-align: center;
  padding: 22px 20px;
  margin-top: auto;
}
.qs-packages-section .package-card .package-price-label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
}
.qs-packages-section .package-card .package-price {
  font-size: 23px;
  font-weight: 900;
  color: var(--yellow);
  margin-bottom: 14px;
}
.qs-packages-section .package-card .package-cta {
  display: inline-block;
  background: var(--yellow);
  color: #1a1a1a;
  font-weight: 700;
  font-size: 14px;
  padding: 9px 24px;
  border-radius: 7px;
  text-decoration: none;
  transition: 0.2s;
}
.qs-packages-section .package-card .package-cta:hover {
  background: #fff;
  color: var(--green-dark);
}

/* ================================================
   NEXSOLAR — _auth.scss
   ================================================ */
.auth-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 11000;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  backdrop-filter: blur(4px);
}

.auth-modal-overlay.open {
  visibility: visible;
  opacity: 1;
}

.auth-modal-container {
  background: #fff;
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  position: relative;
  transform: translateY(-20px);
  transition: 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

.auth-modal-overlay.open .auth-modal-container {
  transform: translateY(0);
}

.auth-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  background: none;
  border: none;
  color: #aaa;
  cursor: pointer;
  z-index: 10;
  transition: 0.2s;
}

.auth-modal-close:hover {
  color: var(--red);
  transform: rotate(90deg);
}

.auth-tabs {
  display: flex;
  border-bottom: 2.5px solid var(--border);
}

.auth-tab-btn {
  flex: 1;
  border: none;
  background: none;
  padding: 14px;
  font-weight: 800;
  color: #bbb;
  border-bottom: 3.5px solid transparent;
  transition: 0.3s;
  font-size: 15px;
  text-transform: uppercase;
}

.auth-tab-btn.active {
  color: var(--green);
  border-bottom-color: var(--green);
  background: #f9fdfb;
}

.auth-tab-btn:hover:not(.active) {
  color: var(--green-light);
  background: #fafafa;
}

.auth-panel {
  display: none;
  padding: 5px;
}

.auth-panel.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.text-green-dark {
  color: var(--green-dark);
}

.hover-up:hover {
  transform: translateY(-2.5px);
}

.input-with-icon {
  position: relative;
  display: block;
  width: 100%;
}

.input-with-icon i:not(.fa-eye):not(.fa-eye-slash) {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--green);
  z-index: 5;
}

.input-with-icon .form-control {
  padding-left: 44px;
  padding-right: 44px;
  width: 100%;
  display: block;
}

.position-relative .form-control {
  padding-right: 44px;
}

.js-toggle-password {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #888;
  transition: 0.3s;
  z-index: 10;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.js-toggle-password:hover {
  color: var(--green);
}

.btn-auth {
  background: var(--green);
  color: #fff;
  border: none;
  font-weight: 800;
  border-radius: 30px;
  height: 48px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(31, 143, 90, 0.2);
}

.btn-auth:hover {
  background: var(--green-dark) !important;
  color: #fff !important;
  box-shadow: 0 6px 18px rgba(31, 143, 90, 0.35);
  transform: translateY(-2px);
}

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

.btn-google {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  height: 48px;
  font-weight: 700;
  transition: 0.2s;
  text-decoration: none;
  color: var(--text);
}

.btn-google:hover {
  background: #f8f9fa;
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  color: var(--text);
}

.form-control {
  height: 48px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  transition: 0.2s;
  font-size: 14px;
}

.form-control:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(31, 143, 90, 0.1);
}

.payment-page {
  min-height: 80vh;
}
.payment-page .btn-green {
  background-color: #1F8F5A;
  color: white;
  border: none;
  transition: 0.3s;
}
.payment-page .btn-green:hover {
  background-color: #177348;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(31, 143, 90, 0.2);
}
.payment-page .bg-light-soft {
  background-color: #fcfcfc;
}
.payment-page .bg-light-warning {
  background-color: #fff9e6;
  color: #856404;
}
.payment-page .border-dashed {
  border-style: dashed !important;
  border-width: 2px !important;
}
.payment-page .btn-copy {
  color: #1F8F5A;
  font-weight: 600;
  font-size: 13px;
}
.payment-page .btn-copy:hover {
  color: #177348;
}
.payment-page .btn-copy-alt {
  font-weight: 600;
  border-radius: 6px;
}
.payment-page .bank-info-grid label {
  font-family: "Inter", sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .payment-page .col-md-5 {
    order: -1;
    border-end: none !important;
    border-bottom: 2px solid #eee;
  }
  .payment-page .payment-card {
    border-radius: 0;
  }
}

.user-sidebar {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1.5px solid var(--border);
}

.user-avatar {
  position: relative;
  display: inline-block;
}

.user-avatar img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid var(--green);
  padding: 3px;
  -o-object-fit: cover;
     object-fit: cover;
}

.user-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 2px;
  text-transform: uppercase;
}

.user-id {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}

.user-menu {
  margin-top: 20px;
  border-top: 1px solid var(--border);
  padding-top: 15px;
}

.user-menu .nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  border-radius: 8px;
  color: #444;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s;
}

.user-menu .nav-link i {
  font-size: 16px;
  color: var(--green);
  opacity: 0.8;
}

.user-menu .nav-link:hover, .user-menu .nav-link.active {
  background: rgba(31, 143, 90, 0.08);
  color: var(--green-dark);
  border-bottom: none !important;
}

.user-menu .nav-link.active i {
  color: var(--green-dark);
}

.user-content-box {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1.5px solid var(--border);
}

.box-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 0;
  position: relative;
  padding-left: 15px;
}

.box-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--yellow);
  border-radius: 2px;
}

.address-item-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 20px;
  position: relative;
  transition: all 0.3s ease;
}
.address-item-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: var(--green-light);
  transform: translateY(-2px);
}
.address-item-card.is-default {
  border-left: 5px solid var(--green);
  background: linear-gradient(to right, rgba(27, 107, 58, 0.03) 0%, #fff 100%);
  border-color: rgba(27, 107, 58, 0.2);
}
.address-item-card .address-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-bg);
  color: var(--green);
  font-size: 18px;
}
.address-item-card.is-default .address-icon {
  background: var(--green);
  color: #fff;
}
.address-item-card .badge-default-addr {
  background: rgba(27, 107, 58, 0.1);
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-left: 10px;
  vertical-align: middle;
  border: 1px solid rgba(27, 107, 58, 0.2);
}
.address-item-card .btn-action {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-muted);
  transition: all 0.2s;
}
.address-item-card .btn-action:hover.edit {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.address-item-card .btn-action:hover.delete {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

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

.btn-green:hover {
  background-color: var(--green-dark);
  color: white;
}

.width-15 {
  width: 15px;
  display: inline-block;
}

.custom-switch .form-check-input {
  width: 2.5em;
  height: 1.25em;
  margin-top: 0.15em;
  cursor: pointer;
}

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

.tab-content > .tab-pane {
  transition: opacity 0.15s linear;
}

.fw-600 {
  font-weight: 600;
}

.fw-800 {
  font-weight: 800;
}

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

.order-timeline {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 2rem auto 3rem;
  max-width: 650px;
  padding: 0 10px;
}
.order-timeline .timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 3;
  width: 80px;
}
.order-timeline .timeline-step .timeline-label {
  font-size: 14px;
  font-weight: 500;
  color: #adb5bd;
  margin-bottom: 12px;
  text-transform: capitalize;
  text-align: center;
  white-space: nowrap;
}
.order-timeline .timeline-step .timeline-icon {
  font-size: 34px;
  color: #adb5bd;
  line-height: 1;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.order-timeline .timeline-step.active .timeline-label {
  color: var(--green);
  font-weight: 600;
}
.order-timeline .timeline-step.active .timeline-icon {
  color: var(--green);
}
.order-timeline .timeline-line {
  flex: 1;
  height: 3px;
  background-color: #dee2e6;
  margin: 0 5px;
  margin-bottom: 18px; /* Aligns line with the center of the 40px icon */
  transition: background-color 0.3s ease;
}
.order-timeline .timeline-line.active {
  background-color: var(--green);
}
