/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: var(--base);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  filter: brightness(0.9);
}

/* Copy Animation */
.base-color {
  color: var(--base) !important;
}

.copyInput {
  display: inline-block;
  line-height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.copied::after {
  position: absolute;
  top: 8px;
  right: 12%;
  width: 100px;
  display: block;
  content: "COPIED";
  font-size: 1em;
  padding: 5px 5px;
  color: #fff;
  background-color: #FF7000;
  border-radius: 3px;
  opacity: 0;
  will-change: opacity, transform;
  animation: showcopied 1.5s ease;
}

@keyframes showcopied {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }

  50% {
    opacity: 0.7;
    transform: translateX(40%);
  }

  70% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
  }
}




.cookies-card {
  width: 520px;
  padding: 30px;
  color: #1E2337;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 999999;
  transition: all .5s;
  background: #d1d1d1;
  border-radius: 5px;
}

.cookies-card.hide {
  bottom: -500px !important;
}

.radius--10px {
  border-radius: 10px;
}

.cookies-card__icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #6e6f70;
  color: hsl(var(--dark));
  font-size: 32px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.cookies-card__content {
  margin-bottom: 0;
}

.cookies-btn {
  color: #363636;
  text-decoration: none;
  padding: 10px 35px;
  margin: 3px 5px;
  display: inline-block;
  border-radius: 999px;
}

.cookies-btn:hover {
  color: #363636;
}


@media (max-width: 767px) {
  .cookies-card {
    width: 100%;
    left: 0;
    bottom: 0;
    font-size: 14px;
    padding: 15px;
  }
}






.hover-input-popup {
  position: relative;
}

.input-popup {
  display: none;

}

.hover-input-popup .input-popup {
  display: block;
  position: absolute;
  bottom: 130%;
  left: 50%;
  width: 280px;
  background-color: #1a1a1a;
  color: #fff;
  padding: 20px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.input-popup::after {
  position: absolute;
  content: '';
  bottom: -19px;
  left: 50%;
  margin-left: -5px;
  border-width: 10px 10px 10px 10px;
  border-style: solid;
  border-color: transparent transparent #1a1a1a transparent;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.input-popup p {
  padding-left: 20px;
  position: relative;
  font-size: 16px;
}

.input-popup p::before {
  position: absolute;
  content: '';
  font-family: 'Line Awesome Free';
  font-weight: 900;
  left: 0;
  top: 4px;
  line-height: 1;
  font-size: 18px;
}

.input-popup p.error {
  text-decoration: line-through;
}

.input-popup p.error::before {
  content: "\f057";
  color: #ea5455;
}

.input-popup p.success::before {
  content: "\f058";
  color: #28c76f;
}



.show-filter {
  display: none;
}

@media(max-width:767px) {
  .responsive-filter-card {
    display: none;
    transition: none;
  }

  .show-filter {
    display: block;
  }
}


.gateway-card {
  padding: 15px;
}

.payment-card-title {
  padding: 13px 25px;
  text-align: center;
  background-color: var(--base-two);
  border-radius: 5px;
  border: 0;
  margin-bottom: 0px;
  color: #fff;
}

.payment-system-list {
  --thumb-width: 100px;
  --thumb-height: 40px;
  --radio-size: 12px;
  --border-color: #eeeeee;
  --hover-border-color: var(--base-two);
  background-color: #fff;
  border-radius: 5px;
  height: 100%;

}


.payment-system-list.is-scrollable {
  max-height: min(388px, 70vh);
  overflow-x: auto;
  padding-block: 4px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar {
  width: 5px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar {
  width: 5px;

}

.payment-system-list.is-scrollable::-webkit-scrollbar-thumb {
  background-color: var(--base-two);
  border-radius: 10px;
}

.payment-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 18px;
  border: 1px solid #fff;
  border-top-color: var(--border-color);
  transition: all 0.3s;
  border-left: 3px solid transparent;
}

.payment-item:first-child {
  border-top-color: #fff;
  border-radius: 5px 5px 0 0;
}

.payment-item:first-child:has(:checked) {
  border-top: 1px solid var(--border-color);
}

.payment-item:last-of-type:has(:checked) {
  border-bottom: 1px solid var(--border-color);
}

.payment-item:has(.payment-item__radio:checked) {
  border-left: 3px solid var(--hover-border-color);
  border-radius: 0px;
}

.payment-item__check {
  border: 3px solid transparent;
}

.payment-item:has(.payment-item__radio:checked) .payment-item__check {
  border: 3px solid var(--base-two);
}

.payment-item__info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: calc(100% - var(--thumb-width))
}

.payment-item__check {
  width: var(--radio-size);
  height: var(--radio-size);
  border: 1px solid var(--base-two);
  display: inline-block;
  border-radius: 100%;

}

.payment-item__name {
  padding-left: 10px;
  width: calc(100% - var(--radio-size));
  transition: all 0.3s;
  font-size: 18px;
}

.payment-item__thumb {
  width: var(--thumb-width);
  height: var(--thumb-height);
  text-align: right;
  padding-left: 10px;

  &:has(.text) {
    width: fit-content;
  }
}

.payment-item__thumb img {
  max-width: var(--thumb-width);
  max-height: var(--thumb-height);
  object-fit: cover;
}


.deposit-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.deposit-info:not(:last-of-type) {
  margin-bottom: 10px;
}



.deposit-info__title {
  max-width: 50%;
  margin-bottom: 0px;
  text-align: left;
  font-size: 18px;

  p {
    font-size: inherit;
    font-weight: 500;
  }
}

.deposit-info__input {
  max-width: 50%;
  text-align: right;
  width: 100%;

  .form--control {
    background-color: transparent !important;
  }

}

.deposit-info__input .input-group-text {
  border-right-color: transparent;
}

.deposit-info__input-select {
  border: 1px solid var(--border-color);
  width: 100%;
  border-radius: 5px;
  padding-block: 6px;
}

.deposit-info__input-group {
  border-radius: 5px;
  max-width: fit-content;
  margin-left: auto;

  .deposit-info__input-group-text {
    align-self: center;
    padding-left: 5px;
  }

}

.deposit-info__input-group .form--control {
  padding: 5px;
  border: 0;
  height: 35px;
  text-align: right;
}

.deposit-info__input-group .form--control:focus {
  box-shadow: unset;
}

.info-text .text,
.deposit-info__input .text {
  font-size: 16px;
  font-weight: 500;

}

.deposit-info__title .text.has-icon {
  display: flex;
  align-items: center;
  gap: 5px
}

.total-amount {
  border-top: 1px solid hsl(var(--black)/0.1);
}

.total-amount .deposit-info__title {
  font-weight: 600;
}

.payment-item__btn {
  border: 0;
  border-block: 1px solid var(--border-color);
  border-bottom: 0;
  background: #fff;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 15px;
  font-weight: 500;
  background-color: hsl(var(--base-two)/0.1);
}

.payment-item:hover+.payment-item__btn {
  border-top-color: #fff;
}

button .spinner-border {
  --bs-spinner-width: 24px;
  --bs-spinner-height: 24px;
}

label.required:after {
  content: '*';
  color: #dc3545 !important;
  margin-left: 2px;
}

/* 
==========================================================================
Premium Preloader Styles (Temporarily Disabled)
==========================================================================
.preloader {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: #0f172a !important;
  z-index: 9999999 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  overflow: hidden !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.loader-content {
  text-align: center;
  position: relative;
  z-index: 10;
}

.logo-wrapper {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader-logo {
  max-width: 100px;
  z-index: 2;
  animation: logoPulse 2s ease-in-out infinite;
}

.loader-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 4px solid rgba(255, 255, 255, 0.05);
  border-top-color: #22c55e !important;
  border-radius: 50%;
  animation: spin 1.5s linear infinite;
}

.loader-text-wrapper {
  margin-top: 20px;
}

.loader-text {
  font-family: 'Poppins', sans-serif !important;
  font-size: 20px !important;
  margin-bottom: 15px !important;
  color: #cbd5e1 !important;
}

.code-comment {
  color: #22c55e !important;
  letter-spacing: 1px;
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid #22c55e;
  animation: typing 3s steps(30, end) infinite, blink-caret .75s step-end infinite;
}

.loader-progress-bar {
  width: 250px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #22c55e, transparent);
  animation: progressMove 2s infinite linear;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes logoPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
}

@keyframes progressMove {
  0% { left: -100%; }
  100% { left: 100%; }
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: #22c55e; }
}

.preloader::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  animation: glowMove 4s ease-in-out infinite alternate;
}

@keyframes glowMove {
  from { transform: translate(-20px, -20px); }
  to { transform: translate(20px, 20px); }
}


/* ==========================================================================
   Global Layout Overrides
   ========================================================================== */
html,
body {
  overflow-x: clip;
  max-width: 100%;
}

* {
  box-sizing: border-box;
}

.container {
  max-width: none !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* ==========================================================================
   Premium Header Design Improvements
   ========================================================================== */

.header {
  background: transparent !important;
  box-shadow: none !important;
  border-bottom: none !important;
  position: relative;
  z-index: 1000;
}

.header.fixed-header {
  position: static !important;
  animation: none !important;
}

.header.fixed-header .header-bottom {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  background: #1a1a2e !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  animation: slide-down 0.35s ease;
  min-height: 64px;
  display: flex;
  align-items: center;
}

.header.fixed-header .header-top {
  visibility: hidden;
  opacity: 0;
  height: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  overflow: hidden;
  margin: 0 !important;
}

.header-top {
  background: #ffffff !important;
  border: none !important;
}

@keyframes slide-down {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

/* ==========================================================================
   Banner Carousel Slider Styles
   ========================================================================== */
.banner-section {
  padding: 0;
  margin: 0;
}

.banner-item-inner {
  background: linear-gradient(135deg, #2c3e86 0%, #1a2552 100%);
  border-radius: 20px;
  overflow: hidden;
  min-height: 450px;
  display: flex;
  align-items: center;
  position: relative;
}

.banner-badge {
  display: inline-block;
  padding: 6px 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-text {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.banner-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
}

.banner-desc {
  font-size: 19px;
  max-width: 450px;
}

.btn-order-now {
  background: #ffffff !important;
  color: #1a1e26 !important;
  padding: 12px 35px !important;
  border-radius: 50px !important;
  font-weight: 700;
  text-transform: capitalize;
  transition: all 0.3s ease;
  border: none !important;
}

.btn-order-now:hover {
  background: var(--base) !important;
  color: #fff !important;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.banner-thumb img {
  max-height: 400px;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
}

/* Slick Customization */
.banner-slider .slick-dots {
  bottom: 25px;
}

.banner-slider .slick-dots li button:before {
  color: #fff;
  font-size: 10px;
  opacity: 0.3;
}

.banner-slider .slick-dots li.slick-active button:before {
  color: var(--base);
  opacity: 1;
}

.banner-slider .slick-prev,
.banner-slider .slick-next {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: 10;
  transition: all 0.3s;
}

.banner-slider .slick-prev:hover,
.banner-slider .slick-next:hover {
  background: var(--base);
}

.banner-slider .slick-prev {
  left: 20px;
}

.banner-slider .slick-next {
  right: 20px;
}

.banner-slider .slick-prev:before,
.banner-slider .slick-next:before {
  font-family: "Line Awesome Free";
  font-weight: 900;
  font-size: 20px;
}

@media (max-width: 991px) {
  .banner-title {
    font-size: 40px;
  }

  .banner-item-inner {
    min-height: auto;
    padding: 40px 0;
  }

  .banner-thumb {
    margin-top: 30px;
  }
}

.header-top-wrapper {
  min-height: 60px;
}

.search-input-group {
  position: relative;
  display: flex;
  align-items: center;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 50px;
  padding: 2px 5px;
  transition: all 0.3s ease;
  max-width: 550px;
  margin: 0 auto;
}

.search-input-group:focus-within {
  border-color: var(--base);
  background: #fff;
  box-shadow: 0 0 0 4px hsla(var(--base-h), var(--base-s), var(--base-l), 0.1);
}

.search-icon {
  padding: 0 15px;
  color: #94a3b8;
  font-size: 19px;
}

.search-input-group .form-control {
  border: none;
  background: transparent;
  padding: 10px 15px 10px 0;
  font-size: 15px;
  color: #1e293b;
}

.search-input-group .form-control:focus {
  box-shadow: none;
  outline: none;
}

.btn-bulk-pricing {
  border: none !important;
  color: #fff !important;
  background: linear-gradient(135deg, var(--base) 0%, #ff6b35 100%) !important;
  border-radius: 50px;
  padding: 10px 22px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(249, 60, 39, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-bulk-pricing:hover {
  background: linear-gradient(135deg, #e0341f 0%, #e85a28 100%) !important;
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(249, 60, 39, 0.45);
}

.support-label {
  color: #64748b !important;
}

.support-number {
  color: var(--base) !important;
  text-decoration: none !important;
  font-size: 16px;
  transition: color 0.3s;
  white-space: nowrap;
}

.support-number:hover {
  color: hsla(var(--base-h), var(--base-s), var(--base-l), 0.8) !important;
}

.user-action-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none !important;
  color: #334155 !important;
  transition: all 0.3s;
  min-width: 50px;
}

.user-action-item:hover {
  color: var(--base) !important;
}

.user-action-item .icon-wrapper {
  position: relative;
  font-size: 26px;
  line-height: 1;
  color: inherit;
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -10px;
  background: var(--base) !important;
  color: #fff !important;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 50px;
  border: 2px solid #fff;
  min-width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.action-label {
  font-size: 12px;
  font-weight: 600;
  margin-top: 5px;
  color: inherit;
}

/* Bottom Nav Menu */
.header-bottom {
  background: #1a1a2e !important;
  border: none !important;
  box-shadow: none !important;
}

.main-menu .nav-item {
  margin: 0 4px;
}

.main-menu .nav-link {
  color: rgba(255,255,255,0.82) !important;
  font-weight: 600;
  font-size: 14px;
  padding: 13px 16px !important;
  position: relative;
  transition: color 0.25s, background 0.25s;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  border-radius: 6px;
}

.main-menu .nav-link::after {
  display: none !important;
}

.main-menu .nav-link:hover {
  color: #fff !important;
  background: rgba(255,255,255,0.1);
}

.main-menu .nav-link.active {
  color: #fff !important;
  background: var(--base) !important;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
  .header-top {
    display: none !important;
  }

  .header-bottom {
    padding: 10px 0;
    background: #fff !important;
  }

  .navbar-toggler {
    border: none;
    font-size: 29px;
    color: #334155 !important;
    padding: 0;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  .mobile-menu .nav-link {
    font-size: 17px;
    padding: 12px 15px !important;
    font-weight: 500;
    color: #334155 !important;
    border-bottom: 1px solid #f1f5f9;
  }

  .offcanvas {
    background-color: #fff !important;
  }
}

.partners-section {
  background-color: #f8f8f8 !important;
}

.partners {
  padding: 20px 0;
}

/* Pure CSS Marquee Animation */
.partners_wrapper {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
  padding: 10px 0;
}

.partners__marquee {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.partners__item {
  padding: 0 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partners__item img {
  max-height: 50px;
  width: auto;
  opacity: 0.8;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.partners__marquee:hover {
  animation-play-state: paused;
}

.partners__item img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   Category Section — bagsguru.in style + left/right panels for 4-cat layout
   ========================================================================== */
.ref-cat {
    background: #fff;
    padding: 20px 0 18px;
    border-bottom: 1px solid #ececec;
    overflow: hidden;
}

/* ---- Main row ---- */
.ref-cat__row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
}

/* ---- Side panels grow to fill available space ---- */
.ref-cat__side {
    flex: 1 1 0;
    min-width: 200px;
    display: flex;
}

/* ===== Filled side panel card ===== */
.cat-side-panel {
    width: 100%;
    height: 175px;
    border-radius: 16px;
    padding: 12px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Orange left panel */
.cat-side-panel--orange {
    background: linear-gradient(145deg, #ff5500 0%, #ff7a00 55%, #ffaa00 100%);
    box-shadow: 0 8px 30px rgba(255,106,0,0.35);
}

/* Dark right panel */
.cat-side-panel--dark {
    background: linear-gradient(145deg, #0f0f23 0%, #1a1a2e 50%, #1e3a5f 100%);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

/* Decorative background circles */
.csp__bg-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    pointer-events: none;
}
.csp__bg-circle:first-child {
    width: 160px; height: 160px;
    top: -55px; right: -55px;
}
.csp__bg-circle--2 {
    width: 100px; height: 100px;
    bottom: -35px; left: -35px;
    background: rgba(255,255,255,0.05);
}
.csp__bg-circle--dark {
    width: 180px; height: 180px;
    bottom: -65px; right: -65px;
    background: rgba(255,255,255,0.04);
}

/* Icon */
.csp__icon {
    font-size: 35px;
    color: rgba(255,255,255,0.95);
    line-height: 1;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.2));
}

/* Title */
.csp__title {
    font-size: 14px;
    font-weight: 800;
    color: rgba(255,255,255,0.72);
    letter-spacing: 4px;
    line-height: 1;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    margin-bottom: -4px;
}
.csp__title span {
    display: block;
    font-size: 27px;
    font-weight: 900;
    letter-spacing: 4px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Product tags (left panel) */
.csp__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.csp__tags span {
    background: rgba(255,255,255,0.18);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.3);
    letter-spacing: 0.3px;
}

/* Divider */
.csp__divider {
    width: 40px;
    height: 2px;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
    position: relative;
    z-index: 1;
}

/* Tagline (left panel) */
.csp__tagline {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
    position: relative;
    z-index: 1;
    font-style: italic;
}

/* Smaller icon for dark (right) panel — it has more content */
.cat-side-panel--dark .csp__icon { font-size: 22px; }

/* Checklist (right panel) */
.csp__list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.csp__list li {
    font-size: 12px;
    color: rgba(255,255,255,0.88);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 4px 8px;
    background: rgba(255,255,255,0.06);
    border-radius: 7px;
    border-left: 3px solid #ff6a00;
}
.csp__list li i {
    color: #ff6a00;
    font-size: 15px;
    flex-shrink: 0;
}

/* CTA button (right panel) */
.csp__btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: linear-gradient(135deg, #ff6a00, #ff8c00);
    color: #fff !important;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 800;
    padding: 9px 18px;
    border-radius: 50px;
    transition: all 0.25s;
    position: relative;
    z-index: 1;
    letter-spacing: 0.4px;
    box-shadow: 0 5px 16px rgba(255,106,0,0.5);
    width: 100%;
    justify-content: center;
}
.csp__btn:hover {
    background: linear-gradient(135deg, #e55c00, #ff7a00);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,106,0,0.6);
}

/* ---- Category item ---- */
.ref-cat__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    flex: 2 1 0;
    min-width: 0;
    align-self: center;
    transition: transform 0.28s ease;
}
.ref-cat__item:hover { transform: translateY(-6px); }

/* Visual wrapper */
.ref-cat__visual {
    position: relative;
    width: 150px;
    height: 158px;
    margin: 0 auto;
}

/* Orange disc */
.ref-cat__disc {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 142px;
    height: 142px;
    border-radius: 50%;
    background: #ff6a00;
    z-index: 0;
    transition: background 0.25s, transform 0.28s;
}
.ref-cat__item:hover .ref-cat__disc {
    background: #e55c00;
    transform: translateX(-50%) scale(1.06);
}

/* Product image */
.ref-cat__visual img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    max-width: 138px;
    max-height: 168px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.18));
}
.ref-cat__item:hover .ref-cat__visual img {
    transform: translateX(-50%) scale(1.07) translateY(-5px);
}

/* Label */
.ref-cat__label {
    margin: 10px 0 0;
    font-size: 14px;
    font-weight: 700;
    color: #222;
    text-align: center;
    line-height: 1.35;
    transition: color 0.2s;
    padding: 0 4px;
}
.ref-cat__item:hover .ref-cat__label { color: #ff6a00; }

/* ---- Tablet: hide side panels, 4 per row ---- */
@media (max-width: 991px) {
    .ref-cat__side { display: none; }
    .ref-cat__row  { justify-content: center; flex-wrap: wrap; gap: 14px; }
    .ref-cat__item { flex: 0 0 calc(25% - 14px); max-width: 150px; }
}

/* ---- Mobile: horizontal scroll ---- */
@media (max-width: 575px) {
    .ref-cat { padding: 14px 0 12px; }
    .ref-cat__row {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        gap: 10px;
        padding-bottom: 4px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .ref-cat__row::-webkit-scrollbar { height: 3px; }
    .ref-cat__row::-webkit-scrollbar-thumb { background: #ff6a00; border-radius: 10px; }
    .ref-cat__item  { flex: 0 0 118px; min-width: 118px; max-width: 118px; scroll-snap-align: start; }
    .ref-cat__visual { width: 112px; height: 128px; }
    .ref-cat__disc   { width: 108px; height: 108px; }
    .ref-cat__visual img { max-width: 102px; max-height: 122px; }
    .ref-cat__label  { font-size: 12px; margin-top: 8px; }
}

/* ==========================================================================
   Vendor / User Dashboard Panel — Compact + Enhanced Design
   ========================================================================== */

/* ── Page title: 64px → 18px ── */
.dashboard__header-title {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #1e293b !important;
  letter-spacing: -.2px;
}

/* ── Header bar ── */
.dashboard__header {
  padding-block: 14px 12px !important;
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 0 !important;
}
.dashboard__header:not(:last-child) {
  margin-bottom: 0 !important;
}

/* ── Content area — breathing room top & bottom ── */
.dashboard__content {
  padding-top: 20px !important;
  padding-bottom: 24px !important;
  margin-bottom: 0 !important;
}

/* ── Container gutter ── */
.dashboard__body .container-fluid {
  --bs-gutter-x: 28px !important;
}

/* ── Sidebar wrapper: dark premium ── */
.dashboard__sidebar-wrapper {
  background: #0f172a !important;
}
.dashboard__sidebar .sidebar-footer {
  background: #0a0f1e !important;
  border-top: 1px solid rgba(255,255,255,.06);
}

/* ── Sidebar header ── */
.dashboard__sidebar .sidebar-header {
  padding: 16px 16px !important;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.dashboard__sidebar .sidebar-logo .logo {
  width: 175px !important;
}

/* ── Sidebar body padding ── */
.dashboard__sidebar .sidebar-body {
  padding-inline: 12px !important;
  padding-top: 10px;
}

/* ── Menu gap ── */
.dashboard .sidebar-menu {
  gap: 2px !important;
}

/* ── Menu links: smaller, tighter ── */
.dashboard .sidebar-menu__link {
  font-size: 12.5px !important;
  font-weight: 500 !important;
  padding: 8px 12px !important;
  border-radius: 8px !important;
  color: #94a3b8 !important;
  gap: 10px !important;
  letter-spacing: .01em;
}
.dashboard .sidebar-menu__link .icon {
  font-size: 15px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}
.dashboard .sidebar-menu__link:hover:not(.active) {
  color: #fff !important;
  background: rgba(255,255,255,.06) !important;
}
.dashboard .sidebar-menu__link.active {
  background: linear-gradient(135deg, #ff6a00, #ff8c00) !important;
  border-color: transparent !important;
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(255,106,0,.3);
}

/* Badge on menu item */
.dashboard .sidebar-menu .custom--badge {
  font-size: 10px !important;
  padding: 2px 6px !important;
  border-radius: 50px !important;
}

/* ── Sidebar footer account ── */
.dashboard__sidebar .sidebar-footer .account {
  padding: 10px 12px !important;
  gap: 8px !important;
}
.dashboard__sidebar .sidebar-footer .account__thumb {
  font-size: 20px !important;
  color: #94a3b8;
}
.dashboard__sidebar .sidebar-footer .account__name {
  font-size: 12px !important;
  font-weight: 600 !important;
  color: #e2e8f0 !important;
}
.dashboard__sidebar .sidebar-footer .account__email {
  font-size: 11px !important;
  color: #64748b !important;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 130px;
}

/* ── Top bar (mobile) ── */
.dashboard .dashboard__top {
  padding-block: 8px !important;
}
.dashboard .show-sidebar-btn {
  font-size: 22px !important;
}

/* ── Collapse button ── */
.sidebar-collapse__icon {
  --size: 26px !important;
  background: rgba(255,106,0,.85) !important;
  top: 30px !important;
  right: -10px !important;
  border-radius: 6px !important;
}

/* ── Dashboard stat cards ── */
.user-dashboard-card {
  padding: 18px 16px 16px !important;
  border-radius: 14px !important;
  border: 1px solid #edf0f5 !important;
  border-top: 3px solid hsl(var(--card-color)) !important;
  background: linear-gradient(160deg, hsl(var(--card-color) / .07) 0%, #fff 52%) !important;
  box-shadow: 0 2px 14px rgba(0,0,0,.06) !important;
  transition: transform .25s ease, box-shadow .25s ease !important;
  overflow: hidden;
}
.user-dashboard-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 10px 32px rgba(0,0,0,.12) !important;
}
.user-dashboard-card__title {
  margin-bottom: 10px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  color: #64748b !important;
  text-transform: uppercase;
  letter-spacing: .07em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.user-dashboard-card__title-icon {
  width: 32px !important;
  height: 32px !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  background: hsl(var(--card-color) / .15) !important;
  border-color: hsl(var(--card-color) / .25) !important;
  color: hsl(var(--card-color)) !important;
  flex-shrink: 0;
}
.user-dashboard-card__amount {
  font-size: 24px !important;
  font-weight: 800 !important;
  color: hsl(var(--card-color)) !important;
  line-height: 1 !important;
  letter-spacing: -.5px;
}
.user-dashboard-card__overlay {
  width: 32px !important;
  height: 32px !important;
  font-size: 14px !important;
  right: 14px !important;
  top: 14px !important;
  border-radius: 8px !important;
  background: hsl(var(--card-color) / .1) !important;
  border-color: hsl(var(--card-color) / .2) !important;
  color: hsl(var(--card-color)) !important;
}

/* dashboard heading (Top Selling Products, Sales) */
.dashboard-heading {
  font-size: 15px !important;
  font-weight: 800 !important;
  color: #1e293b !important;
  letter-spacing: -.2px;
  padding-left: 10px !important;
  border-left: 3px solid var(--logo-orange) !important;
  line-height: 1.3 !important;
}

/* ── Product list ── */
.product-list {
  padding-top: 24px !important;
}
.product-list__heading {
  margin-bottom: 14px !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.view-all-btn {
  font-size: 12px !important;
  font-weight: 700 !important;
  color: var(--logo-orange) !important;
  background: rgba(255,85,0,.07) !important;
  padding: 4px 12px !important;
  border-radius: 50px !important;
  text-decoration: none !important;
  transition: background .2s;
}
.view-all-btn:hover {
  background: rgba(255,85,0,.15) !important;
}
.product-list__item {
  border-radius: 12px !important;
  border: 1px solid #edf0f5 !important;
  overflow: hidden !important;
  transition: transform .22s, box-shadow .22s !important;
  background: #fff !important;
}
.product-list__item:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,.1) !important;
}
.product-list__item-thumb {
  height: 130px !important;
  padding: 8px !important;
  border-radius: 10px 10px 0 0 !important;
  background: #f8fafc !important;
}
.product-list__item-content {
  padding: 8px 10px 10px !important;
}
.product-list__item-title {
  font-size: 12px !important;
  font-weight: 600 !important;
  padding-block: 0 !important;
  margin-bottom: 3px !important;
  color: #1e293b !important;
  line-height: 1.35 !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-list__item-price {
  font-size: 14px !important;
  font-weight: 800 !important;
  color: var(--logo-orange) !important;
  margin-bottom: 3px !important;
}
.product-list__item-order {
  font-size: 11px !important;
  color: #64748b !important;
  margin-bottom: 1px !important;
}

/* ── Sales chart ── */
.sales-chart {
  margin-top: 24px !important;
}
.sales-chart__wrapper {
  border-radius: 14px !important;
  border: 1px solid #edf0f5 !important;
  box-shadow: 0 2px 14px rgba(0,0,0,.05) !important;
  background: #fff !important;
}
.sales-chart__header {
  padding: 14px 18px !important;
  border-bottom: 1px solid #f1f5f9 !important;
}

/* ── Breadcrumb/header action buttons in dashboard ── */
.dashboard__header-btn {
  padding: 7px 16px !important;
  font-size: 13px !important;
  border-radius: 8px !important;
}

/* ── Tables inside dashboard ── */
.dashboard .table th {
  font-size: 12px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #64748b !important;
  padding: 10px 12px !important;
}
.dashboard .table td {
  font-size: 13px !important;
  padding: 10px 12px !important;
  vertical-align: middle;
}

/* ── Notification area ── */
.notification-area__header-title {
  font-size: 14px !important;
  font-weight: 700 !important;
}
.notification-area__item-title {
  font-size: 12.5px !important;
}
.notification-area__item-time {
  font-size: 11px !important;
}

/* ── KYC alerts: tighter ── */
.dashboard .alert {
  padding: 12px 16px !important;
  border-radius: 10px !important;
  margin-bottom: 16px !important;
}
.dashboard .alert-heading {
  font-size: 14px !important;
  font-weight: 700 !important;
}
.dashboard .alert p {
  font-size: 13px !important;
  margin-bottom: 0 !important;
}

/* ── Stat card grid spacing ── */
.card-list {
  margin-bottom: 0 !important;
}
.card-list .row {
  row-gap: 14px !important;
}

/* Fix --card-color for base/primary/default: those use hex values in main.css,
   not HSL components, so hsl(var(--card-color) / alpha) silently fails.
   Re-declare only those three variants with space-separated H S% L% values.
   The rest (info/warning/success/danger/secondary) already use HSL components. */
.dashboard .user-dashboard-card.base {
  --card-color: 19 100% 50%;     /* logo orange #ff5500 */
}
.dashboard .user-dashboard-card.primary {
  --card-color: 327 50% 48%;     /* matches --primary-h/s/l */
}
/* no-variant card (Total Withdrawals) — override the broken var(--base-two) default */
.dashboard .user-dashboard-card:not(.base):not(.base-two):not(.primary):not(.secondary):not(.info):not(.warning):not(.success):not(.danger) {
  --card-color: 354 88% 40%;     /* dark red = base-two #c20c1f */
}

/* ==========================================================================
   Button Size — Compact
   ========================================================================== */

/* Base button — tighter padding, smaller font */
.btn {
  padding: 8px 20px !important;
  font-size: 13.5px !important;
  border-radius: 8px !important;
  line-height: 1.4 !important;
}

/* Large variant */
.btn--lg {
  padding: 11px 28px !important;
  font-size: 15px !important;
}

/* Small variant */
.btn--sm {
  padding: 5px 14px !important;
  font-size: 12px !important;
  border-radius: 6px !important;
}

/* Header Search submit */
.search-submit-btn {
  padding: 7px 18px !important;
  font-size: 13.5px !important;
}

/* Get Bulk Pricing */
.btn-bulk-pricing {
  padding: 8px 18px !important;
  font-size: 13.5px !important;
}

/* Full-width CTA buttons (contact form, auth submit) */
.contact-submit-btn {
  padding: 12px 20px !important;
  font-size: 14px !important;
  border-radius: 12px !important;
}
.auth-card .btn--base,
.account-form .btn--base {
  padding: 11px 20px !important;
  font-size: 14px !important;
}

/* Dashboard action buttons */
.dashboard__header-btn {
  padding: 6px 14px !important;
  font-size: 12.5px !important;
}

/* ==========================================================================
   Input Design — Enhanced
   ========================================================================== */

/* Global form--control: compact + styled */
.form--control {
  padding: 9px 13px !important;
  font-size: 13.5px !important;
  border-radius: 10px !important;
  border: 1.5px solid #e2e8f0 !important;
  background: #f8fafc !important;
  color: #1e293b !important;
  transition: border-color .22s ease, box-shadow .22s ease, background .22s ease !important;
  line-height: 1.5 !important;
}
.form--control::placeholder {
  color: #b0bec5 !important;
  font-size: 13px !important;
}
.form--control:focus {
  border-color: var(--logo-orange) !important;
  background: #fff !important;
  box-shadow: 0 0 0 3px rgba(255,85,0,.1) !important;
  outline: none !important;
}
.form--control:disabled,
.form--control[readonly] {
  background: #f1f5f9 !important;
  opacity: .7 !important;
  cursor: not-allowed !important;
}

/* Textarea */
textarea.form--control {
  padding: 10px 13px !important;
  resize: vertical !important;
}

/* Select inside form--control */
select.form--control {
  padding-right: 32px !important;
  cursor: pointer !important;
}

/* Input group text (phone code prefix etc.) */
.input-group-text,
.input--group .input-group-text {
  background: #f0f4f8 !important;
  border: 1.5px solid #e2e8f0 !important;
  border-right: none !important;
  border-radius: 10px 0 0 10px !important;
  color: #475569 !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  padding: 0 12px !important;
  transition: border-color .22s !important;
}
.input-group:focus-within .input-group-text {
  border-color: var(--logo-orange) !important;
}
.input-group .form--control {
  border-radius: 0 10px 10px 0 !important;
  border-left: none !important;
}

/* Form label */
.form--label,
.form-label {
  font-size: 12px !important;
  font-weight: 700 !important;
  color: #475569 !important;
  text-transform: uppercase !important;
  letter-spacing: .06em !important;
  margin-bottom: 5px !important;
}

/* Form group spacing */
.form-group {
  margin-bottom: 14px !important;
}

/* Auth panel inputs (auth-input-wrap) — height sync */
.form--control[style*="height"],
.auth-input-wrap .form--control {
  height: 42px !important;
  line-height: 42px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Contact page specific inputs */
.contact-form-field {
  padding: 10px 13px 10px 40px !important;
  font-size: 13.5px !important;
  border-radius: 12px !important;
  border: 1.5px solid #e2e8f0 !important;
  background: #f8fafc !important;
}
.contact-form-field:focus {
  border-color: var(--logo-orange) !important;
  background: #fff !important;
  box-shadow: 0 0 0 3px rgba(255,85,0,.1) !important;
}
.contact-form-field::placeholder { color: #b0bec5 !important; }

/* Search bar input */
.search-input-group .form-control {
  padding: 7px 10px 7px 0 !important;
  font-size: 14px !important;
}
.search-input-group:focus-within {
  box-shadow: 0 0 0 3px rgba(255,85,0,.12) !important;
  border-color: var(--logo-orange) !important;
}

/* Mobile search input */
.mobile-search-group input {
  padding: 8px 0 !important;
  font-size: 13.5px !important;
}

/* ==========================================================================
   Button Design — Logo-Matched Colors
   Logo: "OGSU" = navy #1a1a2e  |  "PRINT" = orange #ff5500
   Primary buttons → orange gradient  |  Dark buttons → navy #1a1a2e
   ========================================================================== */

/* ── Logo colour tokens ── */
:root {
  --logo-orange:      #ff5500;
  --logo-orange-mid:  #ff6a00;
  --logo-orange-lite: #ff8000;
  --logo-navy:        #1a1a2e;
  --logo-navy-hover:  #252545;
  --btn-shadow-orange: rgba(255, 85, 0, 0.38);
  --btn-shadow-navy:   rgba(26, 26, 46, 0.35);
}

/* ── Base mixin (shared) ── */
.btn {
  font-weight: 700 !important;
  letter-spacing: .02em;
  transition: all .25s ease !important;
  position: relative;
  overflow: hidden;
}

/* ══════════════════════════════════════
   PRIMARY — orange gradient (logo "PRINT")
   ══════════════════════════════════════ */
.btn--base,
.btn-outline--base.active,
.btn-outline--base:hover {
  background: linear-gradient(135deg, var(--logo-orange) 0%, var(--logo-orange-lite) 100%) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 4px 18px var(--btn-shadow-orange) !important;
}
.btn--base:hover,
.btn--base:focus,
.btn--base:focus-visible {
  background: linear-gradient(135deg, #e54c00 0%, var(--logo-orange) 100%) !important;
  box-shadow: 0 7px 24px var(--btn-shadow-orange) !important;
  transform: translateY(-2px) !important;
  color: #fff !important;
  border: none !important;
}
.btn--base:active {
  transform: translateY(0) !important;
}

/* ── Outline primary ── */
.btn-outline--base {
  background: transparent !important;
  border: 2px solid var(--logo-orange) !important;
  color: var(--logo-orange) !important;
  box-shadow: none !important;
}
.btn-outline--base:hover {
  box-shadow: 0 4px 16px var(--btn-shadow-orange) !important;
  color: #fff !important;
}

/* ══════════════════════════════════════
   SECONDARY DARK — navy (logo "OGSU")
   ══════════════════════════════════════ */
.btn--dark,
.btn--base-two {
  background: linear-gradient(135deg, var(--logo-navy) 0%, #252545 100%) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 4px 14px var(--btn-shadow-navy) !important;
}
.btn--dark:hover,
.btn--dark:focus,
.btn--base-two:hover,
.btn--base-two:focus {
  background: linear-gradient(135deg, #252545 0%, #0f0f23 100%) !important;
  box-shadow: 0 7px 20px var(--btn-shadow-navy) !important;
  transform: translateY(-2px) !important;
  color: #fff !important;
  border: none !important;
}

/* ══════════════════════════════════════
   SEARCH button
   ══════════════════════════════════════ */
.search-submit-btn {
  background: linear-gradient(135deg, var(--logo-orange), var(--logo-orange-lite)) !important;
  box-shadow: 0 3px 12px var(--btn-shadow-orange) !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  color: #fff !important;
  border: none !important;
  transition: all .25s ease !important;
}
.search-submit-btn:hover {
  background: linear-gradient(135deg, #e54c00, var(--logo-orange)) !important;
  transform: scale(1.03) !important;
  box-shadow: 0 5px 18px var(--btn-shadow-orange) !important;
  color: #fff !important;
}

/* ══════════════════════════════════════
   GET BULK PRICING button
   ══════════════════════════════════════ */
.btn-bulk-pricing {
  background: linear-gradient(135deg, var(--logo-orange) 0%, var(--logo-orange-lite) 100%) !important;
  box-shadow: 0 4px 16px var(--btn-shadow-orange) !important;
  border: none !important;
  color: #fff !important;
}
.btn-bulk-pricing:hover {
  background: linear-gradient(135deg, #e54c00 0%, var(--logo-orange) 100%) !important;
  box-shadow: 0 7px 22px var(--btn-shadow-orange) !important;
  transform: translateY(-2px) !important;
  color: #fff !important;
}

/* ══════════════════════════════════════
   NAV — active / contact link
   ══════════════════════════════════════ */
.main-menu .nav-link.active {
  background: linear-gradient(135deg, var(--logo-orange), var(--logo-orange-lite)) !important;
  color: #fff !important;
  border-radius: 4px !important;
  box-shadow: inset 0 -2px 6px rgba(0,0,0,.15);
}
.main-menu .nav-link:hover:not(.active) {
  background: rgba(255,255,255,.1) !important;
  color: #fff !important;
}

/* ══════════════════════════════════════
   MOBILE BULK PRICING button
   ══════════════════════════════════════ */
.mobile-bulk-btn {
  background: linear-gradient(135deg, var(--logo-orange), var(--logo-orange-lite)) !important;
  box-shadow: 0 4px 14px var(--btn-shadow-orange) !important;
  color: #fff !important;
}
.mobile-bulk-btn:hover {
  box-shadow: 0 6px 20px var(--btn-shadow-orange) !important;
  background: linear-gradient(135deg, #e54c00, var(--logo-orange)) !important;
  color: #fff !important;
}

/* ══════════════════════════════════════
   CART badge / mobile badge
   ══════════════════════════════════════ */
.cart-badge,
.mobile-cart-badge,
.mobile-action-badge {
  background: var(--logo-orange) !important;
}

/* ══════════════════════════════════════
   DASHBOARD — sidebar active link (already orange-gradient, just pin the exact color)
   ══════════════════════════════════════ */
.dashboard .sidebar-menu__link.active {
  background: linear-gradient(135deg, var(--logo-orange), var(--logo-orange-lite)) !important;
  box-shadow: 0 4px 14px var(--btn-shadow-orange) !important;
}

/* ══════════════════════════════════════
   VENDOR / USER — submit / action buttons inside forms & panels
   ══════════════════════════════════════ */
.contact-submit-btn {
  background: linear-gradient(135deg, var(--logo-orange) 0%, var(--logo-orange-lite) 100%) !important;
  box-shadow: 0 4px 20px var(--btn-shadow-orange) !important;
}
.contact-submit-btn:hover {
  background: linear-gradient(135deg, #e54c00 0%, var(--logo-orange) 100%) !important;
  box-shadow: 0 8px 28px var(--btn-shadow-orange) !important;
}

/* Auth submit button */
.auth-card .btn--base,
.account-form .btn--base {
  background: linear-gradient(135deg, var(--logo-orange), var(--logo-orange-lite)) !important;
  box-shadow: 0 6px 20px var(--btn-shadow-orange) !important;
}

/* Mobile nav active link border */
.mobile-nav-link.active {
  border-left-color: var(--logo-orange) !important;
  color: var(--logo-orange) !important;
}
.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: rgba(255, 85, 0, 0.06) !important;
  color: var(--logo-orange) !important;
}
.mobile-nav-link:hover .mobile-nav-icon,
.mobile-nav-link.active .mobile-nav-icon {
  background: rgba(255, 85, 0, 0.1) !important;
  color: var(--logo-orange) !important;
}

/* Focus ring — orange tint */
.btn--base:focus-visible,
.btn-outline--base:focus-visible {
  outline: 3px solid rgba(255, 85, 0, .35) !important;
  outline-offset: 2px !important;
}

/* "Get a Quote" and similar CTA links */
.csp__btn {
  background: linear-gradient(135deg, var(--logo-orange), var(--logo-orange-lite)) !important;
  box-shadow: 0 5px 16px var(--btn-shadow-orange) !important;
}
.csp__btn:hover {
  background: linear-gradient(135deg, #e54c00, var(--logo-orange)) !important;
  box-shadow: 0 8px 24px var(--btn-shadow-orange) !important;
}

/* View All btn arrow */
.view-all-btn { color: var(--logo-orange) !important; }
.view-all-btn .icon { border-color: var(--logo-orange) !important; }
.view-all-btn .icon i { color: var(--logo-orange) !important; }

/* ══════════════════════════════════════
   Hover accent colours (links, icons)
   ══════════════════════════════════════ */
.support-number i,
.mobile-phone-link i { color: var(--logo-orange) !important; }
.support-number:hover { color: var(--logo-orange) !important; }

/* Spacing Utilities */
.py-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
}
.pt-50 {
    padding-top: 50px !important;
}
.pb-50 {
    padding-bottom: 50px !important;
}
.my-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
}
.mt-50 {
    margin-top: 50px !important;
}
.mb-50 {
    margin-bottom: 50px !important;
}

/* ==========================================================================
   Global Section Padding + Alternating Backgrounds — all pages
   ========================================================================== */

/* Every section inside <main> gets 50px vertical padding (excluding banner & gallery marquee) */
main > section:not(.banner-section):not(.gallery-section) {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
}

/* Alternating backgrounds: odd = white, even = light gray */
main > section:not(.banner-section):nth-child(odd) {
    background-color: #ffffff !important;
}
main > section:not(.banner-section):nth-child(even) {
    background-color: #f5f6f8 !important;
}

/* Phone: 30px padding */
@media (max-width: 575px) {
    main > section:not(.banner-section):not(.gallery-section) {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }
}

/* ==========================================================================
   Select2 — match form--control height everywhere in dashboard
   JS wraps .select2 elements in a new <div class="select2-wrapper">,
   so override --height on that wrapper to align with form--control (~38px).
   ========================================================================== */

.dashboard .select2-wrapper {
  --height: 38px !important;
}

/* Container + inner spans all inherit the new --height */
.dashboard .select2-wrapper .select2+.select2-container {
  height: var(--height) !important;
  width: 100% !important;
}
.dashboard .select2-wrapper .select2+.select2-container .selection {
  height: var(--height) !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 10px !important;
  background: #f8fafc !important;
}
.dashboard .select2-wrapper .select2+.select2-container .select2-selection--single {
  height: var(--height) !important;
}
.dashboard .select2-wrapper .select2+.select2-container .select2-selection--single .select2-selection__rendered {
  line-height: calc(var(--height) - 2px) !important;
  font-size: 13.5px !important;
  color: #1e293b !important;
  padding-left: 13px !important;
}
/* Arrow: re-centre using same formula as main.css */
.dashboard .select2-wrapper .select2+.select2-container .select2-selection__arrow {
  top: calc(var(--height) / 2) !important;
  height: calc(var(--height) - 16px) !important;
  width:  calc(var(--height) - 16px) !important;
}

/* ==========================================================================
   Vendor / Dashboard — Order Management Table + Search + Buttons Compact
   ========================================================================== */

/* Table header text */
.order-management__table-header .table-header {
  font-size: 12px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: .05em !important;
  color: #64748b !important;
}

/* Table body cell text */
.table-body-item {
  font-size: 13px !important;
  font-weight: 500 !important;
}

/* Product item title inside table */
.product-item__title {
  font-size: 13px !important;
  font-weight: 600 !important;
}

/* Product thumbnail — smaller */
.product-item__thumbnail {
  width: 56px !important;
  height: 56px !important;
}

/* Search input inside vendor pages */
.db__search {
  --padding: 8px 12px !important;
  border-radius: 8px !important;
}
.db__search input {
  font-size: 13px !important;
  padding: 8px 12px !important;
}
.db__search button,
.db__search label {
  padding: 8px 10px !important;
  font-size: 14px !important;
}

/* Breadcrumb-plugins btn (Add Product, etc.) */
.dashboard__header .dashboard__header-right .btn,
.dashboard__header .breadcrumb-plugins .btn {
  padding: 6px 14px !important;
  font-size: 12.5px !important;
  border-radius: 7px !important;
}

/* Order filter link buttons */
.filter-links .btn {
  padding: 4px 12px !important;
  font-size: 11.5px !important;
}

/* Row spacing in order management table */
.order-management__table-body-item {
  margin-bottom: 8px !important;
  padding-bottom: 8px !important;
}
.order-management__table-header {
  margin-bottom: 8px !important;
  padding-bottom: 8px !important;
}

/* ==========================================================================
   Global Dashboard Spacing — consistent vertical rhythm across all pages
   ========================================================================== */

/* Cards — tighter padding */
.dashboard .custom--card .card-body,
.dashboard .card-body {
  padding: 18px 20px !important;
}
.dashboard .card {
  margin-bottom: 20px !important;
  border-radius: 12px !important;
}

/* Nav tabs on profile/settings pages */
.dashboard .nav-tabs .nav-link {
  padding: 7px 16px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  border-radius: 6px 6px 0 0 !important;
}
.dashboard .nav-tabs {
  gap: 4px !important;
  margin-bottom: 16px !important;
  border-bottom: 2px solid #f1f5f9 !important;
}

/* Profile info card — tighter */
.dashboard .profile-info-card,
.dashboard .user-info {
  padding: 16px 20px !important;
}

/* Full-width submit buttons — keep width but reduce height */
.dashboard .btn.w-100,
.dashboard button.w-100 {
  padding-top: 9px !important;
  padding-bottom: 9px !important;
  font-size: 14px !important;
}

/* Form section gaps */
.dashboard .form-group,
.dashboard .mb-3,
.dashboard .mb-4 {
  margin-bottom: 14px !important;
}

/* Consistent section gap between stacked cards/sections */
.dashboard .dashboard__content > * + * {
  margin-top: 16px;
}

/* Table inside card — remove double padding */
.dashboard .card .table-responsive {
  padding: 0 !important;
}
.dashboard .custom--table thead th,
.dashboard .table thead th {
  padding: 10px 16px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: .04em !important;
  color: #64748b !important;
  background: #f8fafc !important;
}
.dashboard .custom--table tbody td,
.dashboard .table tbody td {
  padding: 10px 16px !important;
  font-size: 13px !important;
  vertical-align: middle !important;
}

/* Alert spacing */
.dashboard .alert {
  margin-bottom: 16px !important;
}

/* order-management__header search + filter-links gap */
.order-management__header {
  margin-bottom: 14px !important;
}

/* Withdraw/Support index filter form */
.dashboard .responsive-filter-card {
  margin-bottom: 16px !important;
  padding: 16px !important;
  border-radius: 10px !important;
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
}

/* ==========================================================================
   Blog Detail Page — Enhanced Design
   ========================================================================== */

/* ── Section background & spacing ── */
.blog-detials {
  padding-top: 44px !important;
  padding-bottom: 60px !important;
  background: #f0f4f8 !important;
}

/* ── Article card wrapper ── */
.blog-details {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 28px rgba(0,0,0,.08);
}

/* ── Hero image ── */
.blog-details__thumb {
  aspect-ratio: 16 / 7;
  overflow: hidden;
}
.blog-details__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.blog-details:hover .blog-details__thumb img {
  transform: scale(1.02);
}

/* ── Content area padding ── */
.blog-details__content {
  padding: 28px 32px 24px !important;
}

/* ── Date badge ── */
.blog-item__date {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  background: rgba(255,85,0,.1) !important;
  color: var(--logo-orange) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  padding: 4px 12px !important;
  border-radius: 50px !important;
  margin-bottom: 14px !important;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.blog-item__date-icon { display: none !important; }

/* ── Article title ── */
.blog-details__title {
  font-size: 26px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  line-height: 1.3 !important;
  letter-spacing: -.3px;
  margin-bottom: 22px !important;
  padding-bottom: 18px !important;
  border-bottom: 1px solid #f1f5f9 !important;
}

/* ── Article body: headings (exclude the main title h3) ── */
.blog-details__content h2,
.blog-details__content h3:not(.blog-details__title),
.blog-details__content h4,
.blog-details__content h5 {
  font-weight: 800 !important;
  color: #0f172a !important;
  line-height: 1.35 !important;
  padding-left: 12px !important;
  border-left: 3px solid var(--logo-orange) !important;
  margin-top: 28px !important;
  margin-bottom: 10px !important;
}
.blog-details__content h2 { font-size: 20px !important; }
.blog-details__content h3:not(.blog-details__title) { font-size: 18px !important; }
.blog-details__content h4 { font-size: 16px !important; }
.blog-details__content h5 { font-size: 14px !important; }

/* ── Article title — higher specificity to win over h3 rule ── */
.blog-details__content .blog-details__title {
  font-size: 26px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  line-height: 1.3 !important;
  letter-spacing: -.3px;
  margin-bottom: 22px !important;
  padding-bottom: 18px !important;
  border-bottom: 1px solid #f1f5f9 !important;
  border-left: none !important;
  padding-left: 0 !important;
  margin-top: 0 !important;
}

/* ── Body paragraphs / divs ── */
.blog-details__content > div > div {
  color: #374151;
  line-height: 1.75;
}

/* ── Blockquotes — override inline dark navy styles ── */
.blog-details__content blockquote {
  background: linear-gradient(135deg, #fff7f0, #fffcf8) !important;
  color: #1e293b !important;
  border-left: 4px solid var(--logo-orange) !important;
  border-top: none !important;
  border-right: none !important;
  border-bottom: none !important;
  padding: 18px 22px 18px 20px !important;
  border-radius: 0 12px 12px 0 !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  font-style: italic !important;
  text-align: left !important;
  margin: 20px 0 !important;
  box-shadow: 0 2px 12px rgba(255,85,0,.08) !important;
  position: relative;
}

/* ── Share section ── */
.blog-details__share {
  padding: 18px 0 4px !important;
  border-top: 1px solid #f1f5f9 !important;
  margin-top: 28px !important;
  gap: 12px !important;
}
.social-share__title {
  font-size: 12px !important;
  font-weight: 700 !important;
  color: #64748b !important;
  text-transform: uppercase !important;
  letter-spacing: .06em !important;
}
.social-list {
  gap: 8px !important;
  list-style: none;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-wrap: wrap;
}
.social-list__link {
  width: 34px !important;
  height: 34px !important;
  border-radius: 8px !important;
  background: #f1f5f9 !important;
  color: #475569 !important;
  font-size: 14px !important;
  text-decoration: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all .2s !important;
  border: none !important;
}
.social-list__link:hover {
  background: var(--logo-orange) !important;
  color: #fff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(255,85,0,.3) !important;
}

/* ── Sidebar ── */
.blog-sidebar {
  background: #fff !important;
  border-radius: 14px !important;
  padding: 22px 18px !important;
  border: 1px solid #edf0f5 !important;
  box-shadow: 0 2px 14px rgba(0,0,0,.05) !important;
  margin-bottom: 20px !important;
}
.blog-sidebar__title {
  font-size: 14px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  padding-bottom: 12px !important;
  margin-bottom: 16px !important;
  padding-left: 10px !important;
  border-left: 3px solid var(--logo-orange) !important;
  border-bottom: 1px solid #f1f5f9 !important;
}
.blog-sidebar__title::before,
.blog-sidebar__title::after {
  display: none !important;
}
.latest-blog {
  padding-bottom: 12px !important;
  margin-bottom: 12px !important;
  border-bottom: 1px solid #f8fafc !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 0 !important;
  transition: all .2s;
}
.latest-blog:last-of-type {
  border-bottom: none !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
.latest-blog:hover .latest-blog__title a {
  color: var(--logo-orange) !important;
}
.latest-blog__thumb {
  width: 70px !important;
  height: 70px !important;
  border-radius: 10px !important;
  overflow: hidden;
  flex-shrink: 0 !important;
}
.latest-blog__thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 10px !important;
  transition: transform .3s;
}
.latest-blog:hover .latest-blog__thumb img {
  transform: scale(1.06);
}
.latest-blog__content {
  width: calc(100% - 70px) !important;
  padding-left: 12px !important;
}
.latest-blog__title {
  font-size: 12.5px !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
  margin-bottom: 5px !important;
}
.latest-blog__title a {
  color: #1e293b !important;
  text-decoration: none !important;
  transition: color .2s;
}
.latest-blog__date {
  font-size: 11px !important;
  color: #94a3b8 !important;
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .blog-details__content {
    padding: 20px 18px !important;
  }
  .blog-details__title {
    font-size: 20px !important;
  }
}

/* ==========================================================================
   Product Listing Page — Enhanced Design
   ========================================================================== */

/* ── Page background ── */
.plist-section {
  background: #f0f4f8 !important;
  padding-bottom: 64px !important;
}

/* ── Section bar ── */
.plist-section-bar {
  padding: 26px 0 18px !important;
}
.plist-section-info h2 {
  font-size: 17px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  padding-left: 10px !important;
  border-left: 3px solid var(--logo-orange) !important;
  line-height: 1.3 !important;
  margin: 0 0 3px !important;
}
.plist-section-info p {
  font-size: 12px !important;
  color: #94a3b8 !important;
  padding-left: 13px !important;
  margin: 0 !important;
}

/* ── Product Card wrapper ── */
.product-card {
  background: #fff !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  border: 1.5px solid #edf0f5 !important;
  box-shadow: 0 2px 12px rgba(0,0,0,.05) !important;
  transition: transform .26s ease, box-shadow .26s ease, border-color .26s ease !important;
  display: flex !important;
  flex-direction: column !important;
}
.product-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 18px 42px rgba(0,0,0,.12) !important;
  border-color: rgba(255,85,0,.35) !important;
  background-color: #fff !important;
}

/* ── Image area ── */
.product-card__thumb {
  border: none !important;
  border-radius: 0 !important;
  background: #f8fafc !important;
  aspect-ratio: 4/3 !important;
  height: auto !important;
  overflow: hidden !important;
  position: relative !important;
}
.product-card__thumb-img {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
}
.product-card__thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  padding: 14px !important;
  transition: transform .4s ease !important;
}
.product-card:hover .product-card__thumb img {
  transform: scale(1.08) !important;
}
/* Subtle orange tint overlay on hover */
.product-card__thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,85,0,0);
  transition: background .3s ease;
  z-index: 1;
  pointer-events: none;
}
.product-card:hover .product-card__thumb::before {
  background: rgba(255,85,0,.04);
}

/* ── Rating badge ── */
.product-ratting {
  position: absolute !important;
  top: 10px !important;
  right: 10px !important;
  bottom: auto !important;
  left: auto !important;
  background: rgba(255,255,255,.95) !important;
  color: #374151 !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  padding: 4px 8px !important;
  border-radius: 50px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  box-shadow: 0 2px 8px rgba(0,0,0,.14) !important;
  z-index: 2 !important;
  border: none !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  height: auto !important;
  width: auto !important;
}
.product-ratting i,
.product-ratting .fa-star {
  font-size: 10px !important;
  color: #f59e0b !important;
  display: inline !important;
  line-height: 1 !important;
}

/* ── Content area ── */
.product-card__content {
  padding: 14px 16px 18px !important;
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  border-top: 1px solid #f1f5f9 !important;
  gap: 0 !important;
}

/* ── Product name ── */
.product-card__title {
  margin-bottom: 8px !important;
}
.product-card__title-text {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  line-height: 1.4 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-decoration: none !important;
  transition: color .2s !important;
}
.product-card:hover .product-card__title-text {
  color: var(--logo-orange) !important;
}

/* ── Vendor ── */
.product-card__title-by {
  font-size: 11px !important;
  color: #94a3b8 !important;
  font-weight: 500 !important;
  margin-top: 2px !important;
}
.product-card__title-by a {
  color: #94a3b8 !important;
  text-decoration: none !important;
  transition: color .2s !important;
}
.product-card__title-by a:hover {
  color: var(--logo-orange) !important;
}

/* ── Price ── */
.product-card__price {
  text-decoration: none !important;
  margin-top: auto !important;
  padding-top: 8px !important;
  display: block !important;
}
.product-card__price-text {
  font-size: 15px !important;
  font-weight: 800 !important;
  color: var(--logo-orange) !important;
  margin: 0 !important;
  display: flex !important;
  align-items: baseline !important;
  gap: 7px !important;
  flex-wrap: wrap !important;
}
.product-card__price-text del,
.product-card__price-text .text--danger {
  font-size: 12px !important;
  font-weight: 500 !important;
  color: #94a3b8 !important;
}
.product-card__price-text span {
  color: var(--logo-orange) !important;
  font-size: 15px !important;
  font-weight: 800 !important;
}

/* ── Sort select override ── */
.plist-sort select,
select.custom-selection {
  height: 36px !important;
  padding: 0 28px 0 10px !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 8px !important;
  font-size: 13px !important;
  background: #fff !important;
  color: #374151 !important;
  font-weight: 600 !important;
}

/* ── Grid gutter fix ── */
.plist-section .row.g-md-4 {
  --bs-gutter-x: 1.25rem !important;
  --bs-gutter-y: 1.25rem !important;
}

/* ── Empty state ── */
.empty-list h3 {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #475569 !important;
}

@media (max-width: 767px) {
  .product-card__thumb {
    aspect-ratio: 3/2 !important;
  }
  .product-card__title-text { font-size: 13px !important; }
  .product-card__price-text { font-size: 14px !important; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PRODUCT DETAILS PAGE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ── Page wrapper ── */
.product-info {
  background: #f0f4f8 !important;
  padding-top: 32px !important;
  padding-bottom: 60px !important;
}

/* ── Breadcrumb — matches plist-bc style ── */
.product-breadcrumb {
  background: #fff !important;
  border-bottom: 1px solid #ebebeb !important;
  padding: 18px 0 20px !important;
  margin-top: 0 !important;
}
.product-breadcrumb__wrapper {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 5px !important;
}
.product-breadcrumb__link {
  font-size: 12px !important;
  color: #999 !important;
  text-decoration: none !important;
  transition: color .2s !important;
  display: flex !important;
  align-items: center !important;
  gap: 3px !important;
}
.product-breadcrumb__link:not(:last-child)::after {
  content: '\203A' !important;
  font-size: 9px !important;
  color: #ccc !important;
  margin-left: 5px !important;
  line-height: 1 !important;
  font-weight: 400 !important;
}
.product-breadcrumb__link:hover { color: #ff6a00 !important; }
.product-breadcrumb__link:last-child {
  color: #ff6a00 !important;
  font-weight: 700 !important;
  pointer-events: none !important;
}

/* ── Image gallery card ── */
.product-thumb {
  background: #fff !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  border: 1.5px solid #edf0f5 !important;
  box-shadow: 0 4px 24px rgba(0,0,0,.07) !important;
  padding: 20px !important;
}
.product-thumb-preview {
  background: #f8fafc !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 14px !important;
}
.product-thumb-preview img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  padding: 16px !important;
}
.product-thumb-item {
  border: 2px solid #edf0f5 !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  cursor: pointer !important;
  transition: border-color .2s, box-shadow .2s !important;
  background: #f8fafc !important;
}
.product-thumb-item:hover {
  border-color: #ff6a00 !important;
  box-shadow: 0 2px 10px rgba(255,106,0,.2) !important;
}
.product-thumb-item-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  padding: 8px !important;
}

/* ── Product info panel ── */
.product-info__basic {
  padding-bottom: 14px !important;
  border-bottom: 1px solid #f0f0f0 !important;
  margin-bottom: 14px !important;
}
.product-info__title {
  font-size: 24px !important;
  font-weight: 800 !important;
  color: #111 !important;
  line-height: 1.3 !important;
}
.product-info__supplier {
  font-size: 13px !important;
  color: #888 !important;
  margin: 6px 0 0 !important;
}
.product-info__supplier-name {
  color: #ff6a00 !important;
  font-weight: 700 !important;
  text-decoration: none !important;
}
.product-info__supplier-name:hover { text-decoration: underline !important; }

/* ── Short description bullets ── */
.product-info__short-desc {
  background: #f8fafc !important;
  border-radius: 10px !important;
  padding: 12px 14px !important;
  margin-bottom: 16px !important;
  border-left: 3px solid #ff6a00 !important;
}
.product-info__short-desc-info {
  display: flex !important;
  align-items: flex-start !important;
  gap: 8px !important;
  padding: 3px 0 !important;
  font-size: 13px !important;
  color: #374151 !important;
}
.product-info__short-desc-icon:first-child {
  color: #ff6a00 !important;
  flex-shrink: 0 !important;
  font-size: 10px !important;
  margin-top: 4px !important;
}

/* ── Attribute selectors ── */
.attribute-name {
  font-size: 12px !important;
  font-weight: 700 !important;
  color: #374151 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  margin-bottom: 8px !important;
}
.attribute-value {
  border: 2px solid #e2e8f0 !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: border-color .2s, box-shadow .2s !important;
  overflow: hidden !important;
}
.attribute-value:has(.attributeBtn:checked) {
  border-color: #ff6a00 !important;
  box-shadow: 0 0 0 3px rgba(255,106,0,.15) !important;
}
.text-attribute {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #374151 !important;
  padding: 6px 12px !important;
  display: block !important;
}
.attribute-value:has(.attributeBtn:checked) .text-attribute {
  color: #ff6a00 !important;
}

/* ── Price block ── */
.product-info__price {
  display: flex !important;
  align-items: baseline !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
  margin: 18px 0 !important;
  padding: 14px 16px !important;
  background: linear-gradient(135deg, rgba(255,106,0,.06), rgba(255,140,0,.04)) !important;
  border-radius: 12px !important;
  border: 1px solid rgba(255,106,0,.15) !important;
}
.product-info__price-amount {
  font-size: 28px !important;
  font-weight: 800 !important;
  color: #ff6a00 !important;
  margin: 0 !important;
  line-height: 1 !important;
}
.product-info__price-text {
  font-size: 16px !important;
  font-weight: 500 !important;
  color: #94a3b8 !important;
}

/* ── Start Design CTA button ── */
#designBtn.btn--base {
  border-radius: 12px !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  padding: 14px 24px !important;
  letter-spacing: 0.3px !important;
  box-shadow: 0 4px 18px rgba(255,106,0,.3) !important;
  transition: transform .2s, box-shadow .2s !important;
}
#designBtn.btn--base:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(255,106,0,.4) !important;
}

/* ── Tabs section ── */
.product-info__details {
  margin-top: 32px !important;
  background: #fff !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  border: 1.5px solid #edf0f5 !important;
  box-shadow: 0 4px 24px rgba(0,0,0,.06) !important;
}
.product-info__details-tab {
  border-bottom: 2px solid #f0f4f8 !important;
  background: #fafbfd !important;
  padding: 0 8px !important;
}
.product-info__details-tab .nav-tabs {
  border: none !important;
  gap: 4px !important;
}
.product-info__details-tab .nav-tabs .btn.h2 {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #64748b !important;
  padding: 14px 18px !important;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  border-bottom: 3px solid transparent !important;
  margin-bottom: -2px !important;
  transition: color .2s, border-color .2s !important;
  white-space: nowrap !important;
  line-height: 1.3 !important;
}
.product-info__details-tab .nav-tabs .btn.h2:hover { color: #ff6a00 !important; }
.product-info__details-tab .nav-tabs .btn.h2.active {
  color: #ff6a00 !important;
  border-bottom-color: #ff6a00 !important;
  background: transparent !important;
}
.product-info__desc {
  padding: 24px !important;
}
.product-info__desc .tab-pane {
  font-size: 14px !important;
  line-height: 1.75 !important;
  color: #374151 !important;
}

/* ── Reviews ── */
.all-review {
  background: #f8fafc !important;
  border-radius: 12px !important;
  padding: 20px !important;
  gap: 24px !important;
}
.average-rating {
  font-size: 42px !important;
  font-weight: 800 !important;
  color: #ff6a00 !important;
  line-height: 1 !important;
  margin: 0 !important;
}
.average-rating .total_number {
  font-size: 18px !important;
  color: #94a3b8 !important;
  font-weight: 500 !important;
}

/* ── Related products section ── */
.sold-together {
  background: #fff !important;
  border-radius: 16px !important;
  padding: 24px !important;
  margin-top: 12px !important;
  border: 1.5px solid #edf0f5 !important;
  box-shadow: 0 4px 24px rgba(0,0,0,.06) !important;
}
.sold-together__title {
  font-size: 20px !important;
  font-weight: 800 !important;
  color: #111 !important;
  padding-left: 12px !important;
  border-left: 4px solid #ff6a00 !important;
  margin-bottom: 20px !important;
}

@media (max-width: 767px) {
  .product-info__title { font-size: 20px !important; }
  .product-info__price-amount { font-size: 22px !important; }
  .product-info__details-tab .nav-tabs .btn.h2 {
    padding: 12px 12px !important;
    font-size: 13px !important;
  }
  .product-info__desc { padding: 16px !important; }
}
