@charset "UTF-8";
/*!
 * Project Name: Furnicut
 * Description: Main stylesheet for the application UI
 * Author: Smarterdevs LLC
 * Author URL: https://smarterdevs.com
 * Email: support@smarterdevs.com
 * ------------------------------------------------------------
 */
:root {
  --primary-orange: #F6891F;
  --accent-orange: #FFF7EB;
  --dark-bg: #131921;
  --dark-lite: #313D4D;
  --light-gray: #F0F2F5;
  --accent-gray: #e0e0e0;
  --white: #FFFFFF;
  --accent-white: #FAFAFA;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--dark-bg);
  background-color: var(--white);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.7;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-family: "Poppins", "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 600;
  line-height: 1.25;
  color: var(--dark-bg);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

a {
  color: var(--primary-orange);
  text-decoration: none;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}
a:hover {
  color: var(--dark-lite);
}

ul, ol {
  margin-top: 0;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

li {
  line-height: 1.6;
}

img, svg, video, canvas {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* =========================
   Back to Top Button
   ========================= */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--primary-orange);
  color: var(--white);
  font-size: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  -webkit-transition: opacity 0.25s ease, background 0.2s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, background 0.2s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease;
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease, -webkit-transform 0.25s ease;
}
.back-to-top:hover {
  background: rgb(236.8824034335, 121.6137339056, 9.5175965665);
  -webkit-transform: translateY(0) scale(1.05);
          transform: translateY(0) scale(1.05);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* Mobile slightly smaller */
@media (max-width: 768px) {
  .back-to-top {
    width: 40px;
    height: 40px;
    right: 16px;
    bottom: 18px;
  }
}
.header-main {
  background-color: var(--dark-bg);
  padding: 15px 0;
  display: none;
}
@media (min-width: 992px) {
  .header-main {
    display: block;
  }
}

.brand-logo img {
  width: 100%;
}

.search-container {
  max-width: 600px;
  width: 100%;
}
.search-container .btn-category {
  background: var(--white);
  border: none;
  border-right: 1px solid var(--accent-gray);
  border-radius: 4px 0 0 4px;
  font-size: 0.875rem;
}
.search-container input {
  border: none;
  padding: 10px 15px;
  font-size: 0.875rem;
}
.search-container .btn-search {
  background-color: var(--primary-orange);
  color: var(--white);
  border: none;
  padding: 0 20px;
  border-radius: 0 4px 4px 0;
  font-weight: 600;
}

.header-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.75rem;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.header-links a:hover {
  color: var(--primary-orange);
}
.header-links i {
  font-size: 1.2rem;
  margin-right: 5px;
}

.nav-categories {
  background-color: var(--dark-lite);
  position: relative;
  z-index: 1;
}
.nav-categories .nav-link {
  color: var(--primary-orange);
  font-size: 1rem;
  font-weight: 700;
  padding: 10px 12px;
}
.nav-categories .nav-link:hover {
  color: var(--white);
}

.dropdown-menu {
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-radius: 0;
  border: none;
  background-color: var(--white);
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: none;
}

.dropdown-item {
  font-size: 1rem;
  padding: 8px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #333;
}
.dropdown-item:hover {
  background-color: var(--primary-orange);
  color: var(--white) !important;
}

@media (min-width: 992px) {
  .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
  }
  .dropdown-submenu {
    position: relative;
  }
  .dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
  }
  .dropdown-submenu:hover > .dropdown-menu {
    display: block;
  }
  .dropdown-submenu:hover > .dropdown-item {
    background-color: var(--primary-orange);
    color: var(--white) !important;
  }
}
/* Mobile Header */
.mheader {
  /* fallbacks only (no new SCSS variables) */
  --mh-dark: var(--dark-lite, #2f3b4a);
  --mh-primary: var(--primary-orange, #ff7a00);
  --mh-white: var(--white, #ffffff);
  background: var(--mh-dark);
  color: var(--mh-white);
  margin-bottom: 10px;
}
.mheader .mheader-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 10px 12px 0 12px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.mheader .mheader-icon {
  border: 0;
  background: transparent;
  color: var(--mh-white);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
  line-height: 1;
  padding: 0;
}
.mheader .mheader-brand img {
  max-width: 100px;
  width: 100%;
  margin-left: 10px;
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}
.mheader .mheader-actions {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.mheader .mheader-link {
  color: var(--mh-white);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}
.mheader .mheader-cart {
  position: relative;
  color: var(--mh-white);
  text-decoration: none;
  width: 40px;
  height: 40px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.mheader .mheader-cart img {
  max-width: 36px;
  width: 100%;
}
.mheader .mheader-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  min-width: 16px;
  height: 16px;
  color: var(--mh-white);
  font-size: 11px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 4px;
  line-height: 1;
}
.mheader .mheader-search {
  padding: 8px 12px 10px;
}
.mheader .msearch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  border-radius: 6px;
  overflow: hidden;
  background: var(--mh-white);
}
.mheader .msearch input {
  border: 0;
  outline: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 12px 12px;
  font-size: 14px;
  color: #333;
  background: transparent;
}
.mheader .msearch input::-webkit-input-placeholder {
  color: #8a8a8a;
}
.mheader .msearch input::-moz-placeholder {
  color: #8a8a8a;
}
.mheader .msearch input:-ms-input-placeholder {
  color: #8a8a8a;
}
.mheader .msearch input::-ms-input-placeholder {
  color: #8a8a8a;
}
.mheader .msearch input::placeholder {
  color: #8a8a8a;
}
.mheader .msearch button {
  border: 0;
  outline: 0;
  width: 52px;
  background: var(--mh-primary);
  color: var(--mh-white);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
}
.mheader .mheader-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
  padding: 8px 12px 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.mheader .mheader-nav::-webkit-scrollbar {
  display: none;
}
.mheader .mheader-nav a {
  color: var(--mh-white);
  text-decoration: none;
  font-size: 15px;
  white-space: nowrap;
  opacity: 0.95;
}
.mheader .mheader-nav a.active {
  opacity: 1;
}

.Offcanvas_menu_wrapper {
  width: 290px;
  position: fixed;
  background: #fff;
  z-index: 99;
  top: 0;
  height: 100vh;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  left: 0;
  margin-left: -300px;
  padding: 10px 20px 30px;
  overflow-y: auto;
}
.Offcanvas_menu_wrapper .Offcavas_top {
  padding: 0 0 40px 0;
}
.Offcanvas_menu_wrapper::-webkit-scrollbar {
  width: 3px;
  background-color: #F5F5F5;
}
.Offcanvas_menu_wrapper::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #F5F5F5;
}
.Offcanvas_menu_wrapper::-webkit-scrollbar-thumb {
  background-color: var(--mh-primary);
}

.site_logo img {
  max-width: 150px;
  width: 100%;
}

.canvas_close {
  position: absolute;
  top: 20px;
  right: 13px;
}
.canvas_close a {
  width: 25px;
  height: 25px;
  display: block;
  text-align: center;
  border: 1px solid #f0f0f0;
  border-radius: 50%;
}

.off_canvars_overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  cursor: crosshair;
  background: #333;
  top: 0;
}

.off_canvars_overlay.active {
  opacity: 0.5;
  visibility: visible;
}

.Offcanvas_menu_wrapper.active {
  margin-left: 0;
}

.offcanvas_main_menu {
  padding-left: 0;
}
.offcanvas_main_menu li.menu-item-has-children.menu-open > span.menu-expand {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.offcanvas_main_menu li ul li.menu-item-has-children.menu-open span.menu-expand {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.offcanvas_main_menu li {
  list-style: none;
  position: relative;
}
.offcanvas_main_menu li:last-child {
  margin: 0;
}
.offcanvas_main_menu li span.menu-expand {
  position: absolute;
  right: 0;
}
.offcanvas_main_menu li a {
  font-size: 14px;
  text-transform: capitalize;
  display: block;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #f0f0f0;
  color: var(--dark-lite);
}
.offcanvas_main_menu li a:hover {
  color: var(--mh-primary);
}
.offcanvas_main_menu li ul.sub-menu {
  padding-left: 20px;
}

.hero-slider {
  overflow: hidden;
  position: relative;
}
@media (max-width: 575px) {
  .hero-slider {
    margin-bottom: 0 !important;
  }
}
.hero-slider {
  /* Arrows */
}
.hero-slider .slick-prev,
.hero-slider .slick-next {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  z-index: 5;
  -webkit-transition: background 0.2s ease, -webkit-transform 0.15s ease;
  transition: background 0.2s ease, -webkit-transform 0.15s ease;
  transition: background 0.2s ease, transform 0.15s ease;
  transition: background 0.2s ease, transform 0.15s ease, -webkit-transform 0.15s ease;
}
.hero-slider .slick-prev:before,
.hero-slider .slick-next:before {
  font-size: 22px;
  opacity: 1;
  color: var(--white);
}
.hero-slider .slick-prev {
  left: 12px;
}
.hero-slider .slick-next {
  right: 12px;
}
.hero-slider {
  /* Dots */
}
.hero-slider .slick-dots {
  bottom: 12px;
}
.hero-slider .slick-dots li {
  margin: 0 4px;
}
.hero-slider .slick-dots li button:before {
  font-size: 10px;
  opacity: 0.5;
  color: var(--white);
}
.hero-slider .slick-dots li.slick-active button:before {
  opacity: 1;
  color: var(--primary-orange);
}

#offer_area {
  padding-top: 10px;
  padding-bottom: 30px;
}
#offer_area .offer_item {
  background-color: var(--accent-orange);
  padding: 10px;
  border-radius: 3px;
}

.offer-banner {
  background-color: var(--accent-orange);
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem;
}
.offer-banner .offer-text .offer-title {
  font-weight: 700;
  color: var(--primary-orange);
  font-size: 1.5rem;
}
.offer-banner .offer-text .offer-subtitle {
  font-size: 0.875rem;
  color: var(--dark-bg);
}
.offer-banner .countdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.offer-banner .countdown .time-box {
  min-width: 60px;
  padding: 0.5rem;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.offer-banner .countdown .time-box .number {
  font-weight: 600;
  font-size: 1rem;
}
.offer-banner .countdown .time-box .label {
  font-size: 0.75rem;
}
.offer-banner .countdown .time-box.bg-primary {
  background-color: var(--primary-orange) !important;
}
.offer-banner .countdown .time-box.bg-dark {
  background-color: var(--dark-lite) !important;
}
.offer-banner .countdown .time-box + .time-box {
  margin-left: 0.5rem;
}

@media (max-width: 575.98px) {
  .offer-banner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .offer-banner .countdown {
    margin-top: 0.5rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .offer-banner .countdown .time-box {
    min-width: 50px;
    margin-bottom: 0.25rem;
  }
}
#offer_products {
  padding-top: 30px;
  padding-bottom: 30px;
}

/*====================================
=           Product Card              =
====================================*/
.product-card {
  background-color: var(--white);
  border: 1px solid rgba(19, 25, 33, 0.08);
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.product-card:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
          box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.product-card:hover .product-thumb img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.product-card:hover .wishlist-btn {
  right: 12px;
  opacity: 1;
}
@media (max-width: 768px) {
  .product-card {
    margin-bottom: 25px;
    height: auto;
  }
}

/* Product Image */
.product-thumb {
  position: relative;
  background-color: var(--accent-white);
  overflow: hidden;
}
.product-thumb a {
  display: block;
}
.product-thumb img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (max-width: 575.98px) {
  .product-thumb img {
    height: 220px;
  }
}

/* Badge */
.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  z-index: 2;
}

.badge-discount {
  background-color: #ff3b30;
}

.badge-new {
  background-color: #22c55e;
}

/* Product Body */
.product-body {
  padding: 12px 14px 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

/* Title */
.product-title {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark-bg);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-title a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.product-title a:hover {
  color: var(--primary-orange);
}

/* Price */
.product-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 8px;
}
.product-price .price-new {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-orange);
}
.product-price .price-old {
  font-size: 0.75rem;
  color: #999;
  text-decoration: line-through;
}

/* Add to Cart Button */
.btn-addcart {
  margin-top: auto;
  background-color: var(--primary-orange);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 6px;
  border: none;
  -webkit-transition: background-color 0.2s ease, -webkit-transform 0.15s ease;
  transition: background-color 0.2s ease, -webkit-transform 0.15s ease;
  transition: background-color 0.2s ease, transform 0.15s ease;
  transition: background-color 0.2s ease, transform 0.15s ease, -webkit-transform 0.15s ease;
}
.btn-addcart i {
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .btn-addcart i {
    display: none;
    font-weight: normal;
  }
}
.btn-addcart:hover {
  background-color: rgb(227.0763948498, 116.5793991416, 9.1236051502);
  color: var(--white);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
.btn-addcart:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* Wishlist Button */
.wishlist-btn {
  position: absolute;
  top: 12px;
  right: -42px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background-color: var(--white);
  color: var(--dark-bg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  z-index: 3;
  opacity: 0;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -webkit-box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
          box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}
.wishlist-btn i {
  font-size: 0.95rem;
}
.wishlist-btn:hover {
  color: var(--primary-orange);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.product_layout_1 {
  /* Header */
}
.product_layout_1 .section-head .section-title {
  font-family: "Poppins", "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--dark-bg);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .product_layout_1 .section-head .section-title {
    font-size: 1.03rem;
  }
}
.product_layout_1 .section-head .section-line {
  height: 2px;
  background: var(--primary-orange);
  border-radius: 2px;
  margin-top: 2px;
  opacity: 0.9;
}
.product_layout_1 .section-head .see-all-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark-bg);
  text-decoration: none;
  text-transform: uppercase;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
}
.product_layout_1 .section-head .see-all-link:hover {
  color: var(--primary-orange);
}
.product_layout_1 {
  /* Banner */
}
.product_layout_1 .banner-card {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(19, 25, 33, 0.12);
  background: var(--accent-white);
  height: 100%;
}
.product_layout_1 .banner-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.product_layout_1 {
  /* Category Card */
}
.product_layout_1 .category-card {
  background: var(--white);
  border: 1px solid rgba(19, 25, 33, 0.12);
  border-radius: 10px;
  padding: 14px 12px;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  height: 100%;
  -webkit-transition: border-color 0.18s ease, -webkit-transform 0.18s ease, -webkit-box-shadow 0.18s ease;
  transition: border-color 0.18s ease, -webkit-transform 0.18s ease, -webkit-box-shadow 0.18s ease;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, -webkit-transform 0.18s ease, -webkit-box-shadow 0.18s ease;
}
.product_layout_1 .category-card .category-img {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 110px;
}
.product_layout_1 .category-card img {
  width: 100%;
  max-width: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
  display: block;
  background: var(--accent-white);
}
.product_layout_1 .category-card .category-name {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--dark-bg);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.product_layout_1 .category-card:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  border-color: rgba(246, 137, 31, 0.55);
  -webkit-box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
          box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}
.product_layout_1 .category-card:hover .category-name {
  color: var(--primary-orange);
}
.product_layout_1 {
  /* Slick spacing like g-3 */
}
.product_layout_1 .cat-slider .slick-list {
  margin: 0 -8px;
}
.product_layout_1 .cat-slider .slick-slide {
  padding: 0 8px;
}
.product_layout_1 {
  /* ✅ FIX HEIGHT ON DESKTOP (LG+) WITH SLICK */
}
@media (min-width: 992px) {
  .product_layout_1 .row.equal-height-lg {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .product_layout_1 .banner-col,
  .product_layout_1 .grid-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .product_layout_1 {
    /* Make both columns equal height */
  }
  .product_layout_1 .banner-card {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .product_layout_1 {
    /* Right side must have a defined height to split into 2 rows */
  }
  .product_layout_1 .grid-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
  }
  .product_layout_1 {
    /* Slick internal wrappers MUST stretch */
  }
  .product_layout_1 .cat-slider .slick-list,
  .product_layout_1 .cat-slider .slick-track {
    height: 100%;
  }
  .product_layout_1 .cat-slider .slick-slide {
    height: 100%;
  }
  .product_layout_1 .cat-slider .slick-slide > div {
    height: 100%;
  }
  .product_layout_1 {
    /* Card fills slide height */
  }
  .product_layout_1 .cat-slider .category-card {
    height: 100%;
  }
}

/* =========================
   Project Section
   Uses your variables.scss:
   - var(--primary-orange)
   - var(--dark-bg), var(--white)
   - $heading-font-family, $font-weight-*
   - $font-size-*
   ========================= */
.project-section .project-head .head-bar {
  width: 4px;
  height: 28px;
  border-radius: 4px;
  background: var(--primary-orange);
  display: inline-block;
}
.project-section .project-head .head-title {
  font-family: "Poppins", "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 700;
  color: var(--dark-bg);
  font-size: 1.7rem;
}
@media (max-width: 768px) {
  .project-section .project-head .head-title {
    font-size: 1rem;
  }
}
.project-section .project-head .view-all-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-orange);
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.project-section .project-head .view-all-link:hover {
  text-decoration: underline;
}
.project-section .project-card {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  min-height: 220px;
  height: 100%;
  background: var(--accent-white);
  -webkit-box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  -webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.project-section .project-card .project-img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
  -webkit-transition: -webkit-transform 0.35s ease;
  transition: -webkit-transform 0.35s ease;
  transition: transform 0.35s ease;
  transition: transform 0.35s ease, -webkit-transform 0.35s ease;
}
.project-section .project-card {
  /* Gradient overlay */
}
.project-section .project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.85)), color-stop(55%, rgba(0, 0, 0, 0.25)), to(rgba(0, 0, 0, 0.05)));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.25) 55%, rgba(0, 0, 0, 0.05) 100%);
  pointer-events: none;
}
.project-section .project-card .project-overlay {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  color: var(--white);
}
.project-section .project-card .project-loc {
  font-size: 0.875rem;
  opacity: 0.95;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}
.project-section .project-card .project-loc i {
  font-size: 0.95rem;
}
.project-section .project-card .project-title {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.25;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}
.project-section .project-card {
  /* View Project button (hidden by default) */
}
.project-section .project-card .project-cta {
  margin-top: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-orange);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  -webkit-transform: translateY(6px);
          transform: translateY(6px);
  -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease, -webkit-transform 0.25s ease;
}
.project-section .project-card:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
          box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}
.project-section .project-card:hover .project-img {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}
.project-section .project-card:hover .project-title {
  color: var(--primary-orange);
}
.project-section .project-card:hover .project-cta {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.project-section {
  /* Mobile: show CTA always (because no hover on touch) */
}
@media (max-width: 768px) {
  .project-section .project-card .project-cta {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.quote-section {
  background: -webkit-gradient(linear, left top, left bottom, from(#fffaf4), to(#ffffff));
  background: linear-gradient(180deg, #fffaf4 0%, #ffffff 100%);
}
.quote-section .quote-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  background: rgba(246, 137, 31, 0.12);
  color: var(--primary-orange);
}
.quote-section .quote-title {
  font-family: "Poppins", "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--dark-bg);
}
.quote-section .quote-title span {
  color: var(--primary-orange);
}
.quote-section .quote-subtitle {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 6px;
}
.quote-section .quote-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.quote-section .form-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--dark-bg);
}
.quote-section .input-icon {
  position: relative;
}
.quote-section .input-icon i {
  position: absolute;
  left: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0.9rem;
  color: #9ca3af;
}
.quote-section .input-icon .form-control,
.quote-section .input-icon .form-select {
  padding-left: 40px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  height: 44px;
  font-size: 0.875rem;
}
.quote-section .input-icon .form-control:focus,
.quote-section .input-icon .form-select:focus {
  border-color: var(--primary-orange);
  -webkit-box-shadow: 0 0 0 2px rgba(246, 137, 31, 0.15);
          box-shadow: 0 0 0 2px rgba(246, 137, 31, 0.15);
}
.quote-section .btn-quote {
  background: var(--primary-orange);
  color: var(--white);
  font-weight: 600;
  padding: 12px;
  border-radius: 12px;
  font-size: 0.875rem;
  border: none;
  -webkit-transition: background 0.2s ease, -webkit-transform 0.15s ease;
  transition: background 0.2s ease, -webkit-transform 0.15s ease;
  transition: background 0.2s ease, transform 0.15s ease;
  transition: background 0.2s ease, transform 0.15s ease, -webkit-transform 0.15s ease;
}
.quote-section .btn-quote:hover {
  background: rgb(236.8824034335, 121.6137339056, 9.5175965665);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
.quote-section .quote-footer {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid #e5e7eb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 0.75rem;
  color: #6b7280;
}
.quote-section .quote-footer span {
  white-space: nowrap;
}

/* =========================
   Footer (matches screenshot)
   Uses your variables:
   - var(--dark-bg), var(--dark-lite), var(--primary-orange), var(--white)
   - $font-size-*, $font-weight-*
   ========================= */
.site-footer {
  background: #2f3b49;
  color: rgba(255, 255, 255, 0.85);
  padding: 40px 0 26px;
}
@media (max-width: 768px) {
  .site-footer {
    padding: 25px 10px 25px 10px;
  }
}
.site-footer .footer-title {
  color: var(--primary-orange);
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 14px;
}
.site-footer .footer-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}
.site-footer .footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  -webkit-transition: background 0.2s ease, color 0.2s ease, -webkit-transform 0.15s ease;
  transition: background 0.2s ease, color 0.2s ease, -webkit-transform 0.15s ease;
  transition: background 0.2s ease, transform 0.15s ease, color 0.2s ease;
  transition: background 0.2s ease, transform 0.15s ease, color 0.2s ease, -webkit-transform 0.15s ease;
}
.site-footer .footer-social a i {
  font-size: 0.95rem;
}
.site-footer .footer-social a:hover {
  background: rgba(246, 137, 31, 0.22);
  color: var(--primary-orange);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
.site-footer .footer-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.site-footer .footer-contact a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.875rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.site-footer .footer-contact a i {
  color: var(--primary-orange);
  font-size: 0.95rem;
}
.site-footer .footer-contact a:hover {
  color: var(--white);
}
.site-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.site-footer .footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.875rem;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.site-footer .footer-links a:hover {
  color: var(--white);
}
.site-footer .footer-divider {
  margin: 28px 0 18px;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}
.site-footer .footer-bottom .footer-copy {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
}
.site-footer .footer-bottom .footer-payments img {
  max-width: 450px;
  width: 100%;
}
.site-footer {
  /* Mobile: collapsible sections */
}
.site-footer .footer-toggle {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  /* keep your title style */
  color: var(--primary-orange);
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 12px;
  /* arrow */
}
.site-footer .footer-toggle::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(255, 255, 255, 0.75);
  border-bottom: 2px solid rgba(255, 255, 255, 0.75);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  margin-left: 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.site-footer .footer-toggle[aria-expanded=true]::after {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.site-footer {
  /* Make lists look tighter on mobile */
}
.site-footer .footer-collapse {
  margin-bottom: 10px;
}
.site-footer {
  /* Desktop: always open, no collapse behavior */
}
@media (min-width: 992px) {
  .site-footer .footer-collapse {
    display: block !important;
    height: auto !important;
    visibility: visible !important;
    overflow: visible !important;
  }
}

/* =========================
   Why Buy From Us
   ========================= */
.why_buy {
  background: -webkit-gradient(linear, left top, left bottom, from(#fffaf4), to(#ffffff));
  background: linear-gradient(180deg, #fffaf4 0%, #ffffff 100%);
}
.why_buy .why-buy-head .why-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(246, 137, 31, 0.12);
  color: var(--primary-orange);
  margin-bottom: 10px;
}
.why_buy .why-buy-head .section-title {
  font-family: "Poppins", "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 700;
  color: var(--dark-bg);
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.why_buy .why-buy-head .why-subtitle {
  font-size: 0.875rem;
  color: #6b7280;
  max-width: 620px;
  margin: 0 auto;
}
.why_buy .why-buy-wrap {
  padding: 18px 14px;
}
.why_buy {
  /* Slick spacing */
}
.why_buy .why-slider .slick-list {
  margin: 0 -10px;
}
.why_buy .why-slider .slick-slide {
  padding: 0 10px;
}
.why_buy .why-card {
  height: 140px;
  border-radius: 14px;
  border: 1px solid rgba(19, 25, 33, 0.1);
  background: var(--accent-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 14px 10px;
  -webkit-transition: border-color 0.18s ease, -webkit-transform 0.18s ease, -webkit-box-shadow 0.18s ease;
  transition: border-color 0.18s ease, -webkit-transform 0.18s ease, -webkit-box-shadow 0.18s ease;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, -webkit-transform 0.18s ease, -webkit-box-shadow 0.18s ease;
}
.why_buy .why-card:hover {
  border-color: rgba(246, 137, 31, 0.55);
  -webkit-box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
          box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}
.why_buy .why-card:hover .why-text {
  color: var(--primary-orange);
}
.why_buy .why-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: rgba(246, 137, 31, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.why_buy .why-icon img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.why_buy .why-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--dark-bg);
  -webkit-transition: color 0.18s ease;
  transition: color 0.18s ease;
  line-height: 1.2;
}
.why_buy {
  /* Arrows style (Slick default arrows) */
}
.why_buy .slick-prev,
.why_buy .slick-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  z-index: 2;
  background: rgba(19, 25, 33, 0.25);
  -webkit-transition: background 0.2s ease, -webkit-transform 0.15s ease;
  transition: background 0.2s ease, -webkit-transform 0.15s ease;
  transition: background 0.2s ease, transform 0.15s ease;
  transition: background 0.2s ease, transform 0.15s ease, -webkit-transform 0.15s ease;
}
.why_buy .slick-prev:hover,
.why_buy .slick-next:hover {
  background: rgba(246, 137, 31, 0.65);
}
.why_buy .slick-prev:before,
.why_buy .slick-next:before {
  font-size: 20px;
  color: var(--white);
  opacity: 1;
}
.why_buy .slick-prev {
  left: -6px;
}
.why_buy .slick-next {
  right: -6px;
}
@media (max-width: 768px) {
  .why_buy .slick-prev {
    left: 4px;
  }
  .why_buy .slick-next {
    right: 4px;
  }
}

/* =========================
   SHOP PAGE
   ========================= */
.shop-page .shop-topbar {
  background: var(--white);
  border: 1px solid rgba(19, 25, 33, 0.1);
  border-radius: 12px;
  padding: 12px 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
}
.shop-page .shop-topbar .shop-title {
  font-family: "Poppins", "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 700;
  color: var(--dark-bg);
  font-size: 1.2rem;
  margin: 0;
}
.shop-page .shop-topbar .shop-sub {
  font-size: 0.75rem;
  color: rgba(19, 25, 33, 0.6);
}
.shop-page .shop-topbar .shop-sort {
  min-width: 220px;
  border-radius: 10px;
  font-size: 0.875rem;
}

/* =========================
   SIDEBAR
   ========================= */
.shop-sidebar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media (min-width: 992px) {
  .shop-sidebar {
    position: sticky;
    top: 16px;
  }
}

.sb-card {
  background: var(--white);
  border: 1px solid rgba(19, 25, 33, 0.1);
  border-radius: 12px;
  padding: 14px;
  -webkit-box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
          box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.sb-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.sb-title {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--dark-bg);
}

.sb-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.sb-icon i {
  font-size: 0.95rem;
}
.sb-icon.sb-icon-orange {
  background: rgba(246, 137, 31, 0.14);
  color: var(--primary-orange);
}
.sb-icon.sb-icon-green {
  background: rgba(16, 185, 129, 0.14);
  color: #10b981;
}
.sb-icon.sb-icon-blue {
  background: rgba(59, 130, 246, 0.14);
  color: #3b82f6;
}
.sb-icon.sb-icon-pink {
  background: rgba(244, 63, 94, 0.14);
  color: #f43f5e;
}

.sb-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

/* Main category link */
.sb-link {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.875rem;
  color: rgba(19, 25, 33, 0.85);
  -webkit-transition: background 0.2s ease, color 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease;
}
.sb-link:hover {
  background: rgba(246, 137, 31, 0.08);
  color: var(--primary-orange);
}
.sb-link.is-active {
  background: var(--primary-orange);
  color: var(--white);
}

/* Always-open nested group */
.sb-subgroup {
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px dashed rgba(19, 25, 33, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  margin-top: 2px;
  margin-bottom: 6px;
}

/* Sub category title (clickable) */
.sb-subhead {
  display: block;
  padding: 8px 10px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(19, 25, 33, 0.88);
  background: rgba(19, 25, 33, 0.03);
  -webkit-transition: background 0.2s ease, color 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease;
}
.sb-subhead:hover {
  background: rgba(246, 137, 31, 0.08);
  color: var(--primary-orange);
}

/* Sub-sub links */
.sb-subsub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  padding-left: 10px;
}

.sb-sublink {
  display: block;
  padding: 8px 10px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.875rem;
  color: rgba(19, 25, 33, 0.8);
  -webkit-transition: background 0.2s ease, color 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease;
}
.sb-sublink:hover {
  background: rgba(246, 137, 31, 0.08);
  color: var(--primary-orange);
}

/* Price radios */
.sb-radios {
  gap: 10px;
}

.sb-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.875rem;
  color: rgba(19, 25, 33, 0.85);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.sb-radio input {
  display: none;
}
.sb-radio .dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(19, 25, 33, 0.25);
  position: relative;
}
.sb-radio input:checked + .dot {
  border-color: var(--primary-orange);
}
.sb-radio input:checked + .dot::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--primary-orange);
}

/* Wishlist promo */
.sb-wishlist {
  background: rgba(244, 63, 94, 0.08);
  border-color: rgba(244, 63, 94, 0.18);
}

.sb-muted {
  font-size: 0.75rem;
  color: rgba(19, 25, 33, 0.65);
  margin: 0;
}

.sb-btn-wishlist {
  background: #f43f5e;
  color: var(--white);
  border: none;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.15s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.15s ease;
  transition: transform 0.15s ease, opacity 0.2s ease;
  transition: transform 0.15s ease, opacity 0.2s ease, -webkit-transform 0.15s ease;
}
.sb-btn-wishlist:hover {
  opacity: 0.95;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  color: var(--white);
}

/* Quick links */
.sb-quicklinks {
  gap: 10px;
}

.sb-qlink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 8px 8px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.875rem;
  color: rgba(19, 25, 33, 0.85);
  -webkit-transition: background 0.2s ease, color 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease;
}
.sb-qlink:hover {
  background: rgba(19, 25, 33, 0.04);
  color: var(--dark-bg);
}

.ql-icon {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.ql-icon i {
  font-size: 0.85rem;
}
.ql-icon.ql-green {
  background: rgba(16, 185, 129, 0.14);
  color: #10b981;
}
.ql-icon.ql-orange {
  background: rgba(246, 137, 31, 0.14);
  color: var(--primary-orange);
}
.ql-icon.ql-purple {
  background: rgba(168, 85, 247, 0.14);
  color: #a855f7;
}

.pd-page {
  padding: 18px 0 44px;
}

/* Breadcrumb */
.pd-breadcrumb {
  margin: 6px 0 18px;
}
.pd-breadcrumb ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: #6b7280;
}
.pd-breadcrumb a {
  color: #6b7280;
  text-decoration: none;
}
.pd-breadcrumb a:hover {
  color: #111827;
  text-decoration: underline;
}
.pd-breadcrumb .sep {
  color: var(--dark-lite);
  margin-right: 7px;
}
.pd-breadcrumb .active {
  color: #111827;
  font-weight: 700;
}

/* Top layout */
.pd-top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.1fr 28px 0.9fr;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media (max-width: 992px) {
  .pd-top {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

/* Image */
.pd-image-card {
  border-radius: 7px;
  overflow: hidden;
  background: #f3f4f6;
  border: 1px solid #eef0f3;
}
.pd-image-card img {
  width: 100%;
  height: 520px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 992px) {
  .pd-image-card img {
    height: 420px;
  }
}
@media (max-width: 576px) {
  .pd-image-card img {
    height: 320px;
  }
}

/* Right content */
.pd-right {
  padding-top: 6px;
}

.pd-title {
  font-size: 1.5rem;
  line-height: 1.15;
  margin: 0 0 10px;
  color: #111827;
}
@media (max-width: 576px) {
  .pd-title {
    font-size: 28px;
  }
}

.pd-price-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
}
.pd-price-row .pd-price {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary-orange);
}
.pd-price-row .pd-old {
  font-size: 14px;
  color: var(--dark-lite);
  text-decoration: line-through;
}
.pd-price-row .pd-off {
  font-size: 13px;
  color: #111827;
  font-weight: 700;
}

.pd-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 14px;
  font-size: 12px;
  color: #6b7280;
}
.pd-meta strong {
  color: #111827;
  font-weight: 800;
}

.pd-divider {
  height: 1px;
  background: #eef0f3;
  margin: 18px 0;
}

/* Blocks */
.pd-block {
  margin-bottom: 16px;
}

.pd-label {
  font-size: 13px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 10px;
}
.pd-label strong {
  font-weight: 900;
}

/* Swatches */
.pd-swatches {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.pd-swatch {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--sw, #ddd);
  border: 2px solid #fff;
  -webkit-box-shadow: 0 0 0 1px #e5e7eb;
          box-shadow: 0 0 0 1px #e5e7eb;
  display: inline-block;
  text-decoration: none;
}
.pd-swatch.is-active {
  -webkit-box-shadow: 0 0 0 2px #ff7a00;
          box-shadow: 0 0 0 2px #ff7a00;
}
.pd-swatch:hover {
  -webkit-box-shadow: 0 0 0 2px #111827;
          box-shadow: 0 0 0 2px #111827;
}

/* Select */
.pd-select {
  width: 100%;
  height: 42px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: #fff;
  padding: 0 12px;
  font-size: 13px;
  color: #111827;
  outline: none;
}
.pd-select:focus {
  border-color: #ff7a00;
  -webkit-box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.12);
          box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.12);
}

/* Qty */
.pd-qty-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
}
.pd-qty-block .pd-label {
  margin: 0;
  min-width: 72px;
}

.pd-qty {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  height: 42px;
  background: #fff;
}

.pd-qty-btn {
  width: 46px;
  height: 42px;
  border: 0;
  background: #fff;
  cursor: pointer;
  font-size: 18px;
  color: #111827;
}
.pd-qty-btn:hover {
  background: #f3f4f6;
}

.pd-qty-input {
  width: 52px;
  height: 42px;
  border: 0;
  text-align: center;
  outline: none;
  font-weight: 800;
  color: #111827;
  background: transparent;
}

/* Buttons */
.pd-actions {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 12px 1fr 12px 44px;
  grid-template-columns: 1fr 1fr 44px;
  gap: 12px;
  margin-top: 18px;
}
@media (max-width: 576px) {
  .pd-actions {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.pd-actions-secondary {
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  margin-top: 14px;
}
@media (max-width: 576px) {
  .pd-actions-secondary {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.pd-btn {
  height: 46px;
  border-radius: 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  padding: 0 14px;
  border: 1px solid transparent;
  -webkit-transition: 0.15s ease;
  transition: 0.15s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.pd-btn.pd-btn-compact {
  height: 42px;
  font-size: 13px;
}

.pd-btn-primary {
  background: #ff7a00;
  color: #fff;
}
.pd-btn-primary:hover {
  -webkit-filter: brightness(0.95);
          filter: brightness(0.95);
}

.pd-btn-outline {
  background: #fff;
  color: #ff7a00;
  border-color: #ff7a00;
}
.pd-btn-outline:hover {
  background: rgba(255, 122, 0, 0.06);
}

.pd-btn-icon {
  background: #fff;
  color: #111827;
  border-color: #e5e7eb;
  padding: 0;
  font-size: 18px;
}
@media (max-width: 576px) {
  .pd-btn-icon {
    height: 46px;
  }
}
.pd-btn-icon:hover {
  background: #f9fafb;
  border-color: #d1d5db;
}

.pd-btn-ic {
  font-size: 14px;
  line-height: 1;
}

/* Bottom */
.pd-bottom {
  margin-top: 26px;
}

/* Bootstrap tabs styling */
.pd-navtabs {
  border: 0;
  background: #f3f4f6;
  border: 1px solid #eef0f3;
  border-radius: 10px;
  padding: 8px;
  gap: 10px;
}
.pd-navtabs .nav-item {
  margin-bottom: 0;
}
.pd-navtabs .nav-link {
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 900;
  color: #6b7280;
  background: transparent;
}
.pd-navtabs .nav-link:hover {
  color: #111827;
}
.pd-navtabs .nav-link.active {
  background: #fff;
  color: #111827;
  border-color: #e5e7eb;
  -webkit-box-shadow: 0 2px 8px rgba(17, 24, 39, 0.06);
          box-shadow: 0 2px 8px rgba(17, 24, 39, 0.06);
}

.pd-tabcontent {
  border: 1px solid #eef0f3;
  border-radius: 12px;
  margin-top: 12px;
  overflow: hidden;
  background: #fff;
}

.pd-panel {
  padding: 18px;
}

/* Spec rows */
.pd-spec .pd-row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 220px 1fr;
  grid-template-columns: 220px 1fr;
  padding: 14px 0;
  border-bottom: 1px solid #eef0f3;
}
.pd-spec .pd-row:last-child {
  border-bottom: 0;
}
@media (max-width: 576px) {
  .pd-spec .pd-row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
.pd-spec .pd-k {
  font-size: 13px;
  font-weight: 900;
  color: #111827;
}
.pd-spec .pd-v {
  font-size: 13px;
  color: #6b7280;
}

/* Description */
.pd-desc {
  color: #374151;
  font-size: 14px;
  line-height: 1.7;
}
.pd-desc p {
  margin: 0 0 12px;
}
.pd-desc ul {
  margin: 0;
  padding-left: 18px;
}
.pd-desc ul li {
  margin: 6px 0;
}

/* xZoom integration */
.pd-xzoom {
  padding: 10px;
  background: #f3f4f6;
}
.pd-xzoom .pd-xzoom__main {
  overflow: hidden;
  background: #fff;
}
.pd-xzoom {
  /* Main image */
}
.pd-xzoom .pd-xzoom__img {
  width: 100%;
  height: 520px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 992px) {
  .pd-xzoom .pd-xzoom__img {
    height: 420px;
  }
}
@media (max-width: 576px) {
  .pd-xzoom .pd-xzoom__img {
    height: 320px;
  }
}
.pd-xzoom {
  /* Thumbs row */
}
.pd-xzoom .pd-xzoom__thumbs {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr 10px 1fr 10px 1fr 10px 1fr 10px 1fr;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  padding: 12px 4px 4px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .pd-xzoom .pd-xzoom__thumbs {
    -ms-grid-columns: (1fr)[6];
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (max-width: 576px) {
  .pd-xzoom .pd-xzoom__thumbs {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
}
.pd-xzoom .pd-xzoom__thumbs a {
  display: block;
  overflow: hidden;
  background: #fff;
  border: 1px solid #eef0f3;
  -webkit-transition: 0.15s ease;
  transition: 0.15s ease;
}
.pd-xzoom .pd-xzoom__thumbs a:hover {
  border-color: rgba(0, 0, 0, 0.18);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
.pd-xzoom .pd-xzoom__thumbs img {
  width: 100%;
  height: 64px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin: 0;
}

/* Important: xZoom uses its own internal elements; prevent image constraints */
.xzoom-source img,
.xzoom-preview img,
.xzoom-lens img {
  max-width: none;
  max-height: none;
}

/* =========================
   CART PAGE (SCSS)
========================= */
.cart-page {
  padding: 18px 0 44px;
  background: #fff;
}

/* Breadcrumb */
.cart-breadcrumb {
  margin: 6px 0 12px;
}
.cart-breadcrumb ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: #6b7280;
}
.cart-breadcrumb a {
  color: #6b7280;
  text-decoration: none;
}
.cart-breadcrumb a:hover {
  color: var(--dark-lite);
  text-decoration: underline;
}
.cart-breadcrumb .sep {
  color: #9ca3af;
}
.cart-breadcrumb .active {
  color: var(--dark-lite);
  font-weight: 700;
}

.cart-title {
  font-size: 1.5rem;
  line-height: 1.15;
  margin: 0 0 18px;
  color: var(--dark-lite);
}
@media (max-width: 576px) {
  .cart-title {
    font-size: 28px;
  }
}

/* Main grid */
.cart-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 22px 420px;
  grid-template-columns: 1fr 420px;
  gap: 22px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media (max-width: 992px) {
  .cart-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

/* Item card */
.cart-item {
  border: 1px solid #eef0f3;
  border-radius: 14px;
  background: #fff;
  padding: 14px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 120px 1rem 1fr;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  margin-bottom: 15px;
}
@media (max-width: 576px) {
  .cart-item {
    -ms-grid-columns: 96px 1fr;
    grid-template-columns: 96px 1fr;
    padding: 12px;
  }
}

.cart-item__media {
  width: 120px;
  height: 92px;
  border-radius: 12px;
  overflow: hidden;
  background: #f3f4f6;
  border: 1px solid #eef0f3;
}
@media (max-width: 576px) {
  .cart-item__media {
    width: 96px;
    height: 78px;
  }
}
.cart-item__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.cart-item__content {
  min-width: 0;
}

.cart-item__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.cart-item__nameprice {
  min-width: 0;
}

.cart-item__name {
  display: inline-block;
  font-size: 1rem;
  color: var(--dark-lite);
  text-decoration: none;
  margin-bottom: 4px;
}
.cart-item__name:hover {
  text-decoration: underline;
}

.cart-item__price {
  font-size: 1rem;
  color: var(--primary-orange);
}

.cart-item__rightprice {
  font-size: 1rem;
  color: var(--dark-lite);
  white-space: nowrap;
}

/* Bottom row */
.cart-item__bottom {
  margin-top: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 14px;
}

/* Qty (static) */
.cart-qty {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  height: 38px;
  background: #fff;
}

.cart-qty__btn {
  width: 40px;
  height: 38px;
  border: 0;
  background: #fff;
  cursor: pointer;
  font-size: 18px;
  color: var(--dark-lite);
}
.cart-qty__btn:hover {
  background: #f3f4f6;
}

.cart-qty__input {
  width: 46px;
  height: 38px;
  border: 0;
  text-align: center;
  outline: none;
  color: var(--dark-lite);
  background: transparent;
}

/* Remove */
.cart-remove {
  width: 40px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: transparent;
  color: #6b7280;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}
.cart-remove:hover {
  background: #f9fafb;
  border-color: #e5e7eb;
  color: var(--dark-lite);
}

/* Summary */
.cart-summary {
  border: 1px solid #eef0f3;
  border-radius: 14px;
  background: #fff;
  padding: 18px;
}
@media (max-width: 992px) {
  .cart-summary {
    position: static;
  }
}

.cart-summary__title {
  font-size: 20px;
  margin: 0 0 12px;
  color: var(--dark-lite);
}

.cart-summary__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  font-size: 14px;
  color: #6b7280;
}

.cart-summary__value {
  color: var(--dark-lite);
  font-weight: 800;
  white-space: nowrap;
}

.cart-summary__hr {
  height: 1px;
  background: #eef0f3;
  margin: 8px 0;
}

.cart-summary__total {
  padding: 14px 0;
}
.cart-summary__total .cart-summary__label {
  color: var(--dark-lite);
  font-weight: 900;
}

.cart-summary__value--total {
  color: var(--primary-orange);
  font-weight: 900;
  font-size: 18px;
}

/* Checkout button */
.cart-summary__btn {
  margin-top: 10px;
  height: 52px;
  border-radius: 10px;
  background: var(--primary-orange);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  width: 100%;
  -webkit-transition: 0.15s ease;
  transition: 0.15s ease;
}
.cart-summary__btn:hover {
  -webkit-filter: brightness(0.95);
          filter: brightness(0.95);
  color: #fff;
}

.cart-summary__arrow {
  font-size: 18px;
  line-height: 1;
  margin-left: 6px;
}

/* Continue link */
.cart-summary__link {
  display: inline-block;
  width: 100%;
  text-align: center;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 800;
  color: var(--primary-orange);
  text-decoration: none;
}
.cart-summary__link:hover {
  text-decoration: underline;
}

/* =========================
   EMPTY CART PAGE (SCSS)
========================= */
.empty-cart-page {
  min-height: calc(100vh - 160px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.empty-cart-box {
  text-align: center;
  max-width: 420px;
  margin: 0 auto;
}

.empty-cart-icon {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #f3f4f6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto 18px;
  color: #6b7280;
}
.empty-cart-icon svg {
  width: 42px;
  height: 42px;
}

.empty-cart-title {
  font-size: 26px;
  font-weight: 900;
  color: #111827;
  margin: 0 0 10px;
}

.empty-cart-text {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 22px;
  line-height: 1.6;
}

/* Button */
.empty-cart-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 48px;
  padding: 0 26px;
  border-radius: 10px;
  background: #ff7a00;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  -webkit-transition: 0.15s ease;
  transition: 0.15s ease;
}
.empty-cart-btn:hover {
  -webkit-filter: brightness(0.95);
          filter: brightness(0.95);
  color: #fff;
}

/* =========================
   CHECKOUT PAGE (SCSS)
========================= */
.checkout-page {
  padding: 18px 0 44px;
}

/* Breadcrumb */
.checkout-breadcrumb {
  margin: 6px 0 12px;
}
.checkout-breadcrumb ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: #6b7280;
}
.checkout-breadcrumb a {
  color: #6b7280;
  text-decoration: none;
}
.checkout-breadcrumb a:hover {
  text-decoration: underline;
}
.checkout-breadcrumb .sep {
  color: #9ca3af;
}
.checkout-breadcrumb .active {
  font-weight: 700;
}

.checkout-title {
  font-size: 1.5rem;
  line-height: 1.15;
  margin: 0 0 18px;
}
@media (max-width: 576px) {
  .checkout-title {
    font-size: 28px;
  }
}

/* Shared card */
.card-box {
  border: 1px solid #eef0f3;
  border-radius: 14px;
  background: #fff;
  padding: 16px;
}

/* Top auth box */
.checkout-auth {
  margin-bottom: 18px;
  padding: 12px;
}
.checkout-auth .checkout-help {
  margin: 10px 0 0;
  font-size: 13px;
  color: #6b7280;
}

/* Tabs */
.checkout-tabs {
  border: 0;
  background: #f3f4f6;
  border: 1px solid #eef0f3;
  border-radius: 10px;
  padding: 8px;
  gap: 10px;
}
.checkout-tabs .nav-item {
  margin-bottom: 0;
}
.checkout-tabs .nav-link {
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 13px;
  color: #6b7280;
  background: transparent;
}
.checkout-tabs .nav-link.active {
  background: #fff;
  border-color: #e5e7eb;
  -webkit-box-shadow: 0 2px 8px rgba(17, 24, 39, 0.06);
          box-shadow: 0 2px 8px rgba(17, 24, 39, 0.06);
}

.checkout-tab-content {
  padding: 4px 6px 0;
}

/* Grid */
.checkout-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 22px 420px;
  grid-template-columns: 1fr 420px;
  gap: 22px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media (max-width: 992px) {
  .checkout-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

/* Left card head */
.card-head {
  margin-bottom: 14px;
}
.card-head h3 {
  font-size: 1.125rem;
  margin: 0;
}
.card-head p {
  margin: 4px 0 0;
  font-size: 12px;
  color: #6b7280;
}

.req {
  color: #ef4444;
}

.checkout-input {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  height: 44px;
  font-size: 13px;
  padding: 0 12px;
}
.checkout-input:focus {
  border-color: #ff7a00;
  -webkit-box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.12);
          box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.12);
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.divider {
  height: 1px;
  background: #eef0f3;
  margin: 18px 0;
}

/* Summary */
.checkout-summary {
  padding: 16px;
}

.summary-title {
  font-size: 1rem;
  margin: 0 0 12px;
}

.summary-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}

.summary-item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 52px 12px 1fr;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.summary-thumb {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  overflow: hidden;
  background: #f3f4f6;
  border: 1px solid #eef0f3;
}
.summary-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.summary-info {
  min-width: 0;
}

.summary-name {
  font-size: 0.875rem;
  margin-bottom: 2px;
}

.summary-qty {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 4px;
}

.summary-price {
  font-size: 0.875rem;
  color: #ff7a00;
}

.summary-hr {
  height: 1px;
  background: #eef0f3;
  margin: 14px 0;
}

.summary-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
}
.summary-row .summary-label {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 700;
}
.summary-row .summary-value {
  font-size: 0.875rem;
  white-space: nowrap;
}
.summary-row .summary-value.old {
  color: #6b7280;
  text-decoration: line-through;
}
.summary-row .summary-value.free {
  color: #6b7280;
  font-weight: 800;
}
.summary-row.total {
  padding: 12px 0;
}

.total-val {
  color: #ff7a00;
  font-size: 1.25rem;
  font-weight: 600;
}

/* Payment */
.pay-block {
  margin-top: 6px;
}

.pay-title {
  font-size: 12px;
  margin: 8px 0 10px;
}

.pay-option {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 18px 10px 1fr;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding: 12px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  margin-bottom: 10px;
  -webkit-transition: 0.15s ease;
  transition: 0.15s ease;
}
.pay-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.pay-option .pay-radio {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #ff7a00;
  margin-top: 2px;
  position: relative;
}
.pay-option .pay-radio::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: #ff7a00;
  opacity: 0;
  -webkit-transition: 0.15s ease;
  transition: 0.15s ease;
}
.pay-option .pay-name {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 2px;
}
.pay-option .pay-sub {
  display: block;
  font-size: 12px;
  color: #6b7280;
}
.pay-option {
  /* When selected */
}
.pay-option input:checked ~ .pay-radio::after {
  opacity: 1;
}
.pay-option input:checked ~ .pay-radio {
  border-color: #ff7a00;
}
.pay-option input:checked ~ .pay-text {
  /* optional */
}
.pay-option {
  /* Highlight border when selected */
}
.pay-option:has(input:checked) {
  border-color: #ff7a00;
  -webkit-box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.08);
          box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.08);
}

/* Place order */
.place-order-btn {
  margin-top: 10px;
  height: 52px;
  border-radius: 10px;
  background: #ff7a00;
  color: #fff;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  -webkit-transition: 0.15s ease;
  transition: 0.15s ease;
}
.place-order-btn:hover {
  -webkit-filter: brightness(0.95);
          filter: brightness(0.95);
  color: #fff;
}

.terms {
  margin: 10px 0 0;
  font-size: 11px;
  color: #6b7280;
  text-align: center;
}
.terms a {
  color: #6b7280;
  text-decoration: underline;
}
/* ==========================
   AUTH (Login/Register)
   One SCSS for both pages
========================== */
.auth-page {
  padding: 60px 0;
  background: #fff;
}
@media (max-width: 575px) {
  .auth-page {
    padding: 35px 0;
  }
}

.auth-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 34px 32px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
@media (max-width: 575px) {
  .auth-card {
    padding: 26px 18px;
  }
}

/* Header */
.auth-header {
  margin-bottom: 22px;
}
.auth-header h2 {
  font-size: 34px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 6px;
}
@media (max-width: 575px) {
  .auth-header h2 {
    font-size: 28px;
  }
}
.auth-header p {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 0;
}

/* Social buttons */
.auth-social {
  display: -ms-grid;
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.auth-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  height: 46px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  border: none;
  text-decoration: none;
}
.auth-btn img {
  width: 18px;
  height: 18px;
  display: block;
  background: #fff;
  padding: 2px;
  border-radius: 4px;
}
.auth-btn i {
  font-size: 15px;
}
.auth-btn.google {
  background: #2ea44f;
}
.auth-btn.google:hover {
  background: rgb(39.2971428571, 140.1028571429, 67.4885714286);
  color: #fff;
}
.auth-btn.facebook {
  background: #0b5cff;
}
.auth-btn.facebook:hover {
  background: rgb(0, 78.1450819672, 235.4);
  color: #fff;
}

/* Divider */
.auth-divider {
  position: relative;
  text-align: center;
  margin: 18px 0 18px;
}
.auth-divider::before, .auth-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: #e5e7eb;
}
.auth-divider::before {
  left: 0;
}
.auth-divider::after {
  right: 0;
}
.auth-divider span {
  display: inline-block;
  font-size: 13px;
  color: #6b7280;
  padding: 0 10px;
  background: #fff;
}

/* Labels */
.auth-page .form-label {
  font-size: 13px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

/* Input wrapper */
.auth-input {
  position: relative;
}
.auth-input i {
  position: absolute;
  left: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #9ca3af;
  font-size: 14px;
}
.auth-input .form-control {
  height: 44px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding-left: 38px;
  padding-right: 72px;
  font-size: 14px;
}
.auth-input .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #f97316;
}
.auth-input {
  /* Eye button */
}
.auth-input .eye-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: none;
  background: transparent;
  padding: 0;
  width: 30px;
  height: 30px;
  color: #9ca3af;
}
.auth-input .eye-btn i {
  position: static;
  -webkit-transform: none;
          transform: none;
  color: inherit;
  font-size: 16px;
}
.auth-input .eye-btn:hover {
  color: #111827;
}

/* Remember + forgot row */
.auth-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 10px 0 18px;
  gap: 12px;
}

.remember {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #4b5563;
}
.remember input {
  width: 15px;
  height: 15px;
  border-radius: 3px;
}

.forgot {
  font-size: 14px;
  color: #f97316;
  text-decoration: none;
}
.forgot:hover {
  text-decoration: underline;
  color: rgb(224.4209205021, 95.3548117155, 5.7790794979);
}

/* Terms */
.terms {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 8px 0 18px;
  font-size: 13px;
  color: #4b5563;
}
.terms input {
  margin-top: 2px;
  width: 15px;
  height: 15px;
}
.terms a {
  color: #f97316;
  text-decoration: none;
}
.terms a:hover {
  text-decoration: underline;
}

/* Primary submit button */
.auth-submit {
  background: #f97316;
  border: none;
  height: 48px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 800;
}
.auth-submit:hover {
  background: rgb(229.3928870293, 97.4673640167, 5.9071129707);
}

/* Bottom text */
.auth-footer {
  margin-top: 16px;
  font-size: 14px;
  color: #6b7280;
  text-align: center;
}
.auth-footer a {
  color: #f97316;
  font-weight: 800;
  text-decoration: none;
}
.auth-footer a:hover {
  text-decoration: underline;
}

/* ==========================
   My Account Page
========================== */
.account-page {
  --orange: #f97316;
  --text: #111827;
  --muted: #6b7280;
  --border: #e5e7eb;
  --card-radius: 14px;
}

.account-breadcrumb {
  font-size: 14px;
  color: var(--muted);
}
.account-breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}
.account-breadcrumb a:hover {
  color: var(--text);
}
.account-breadcrumb span {
  margin: 0 6px;
}

/* Shared card UI */
.card-ui {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 22px;
}

.card-ui-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.card-ui-title {
  font-size: 20px;
  color: var(--text);
  margin: 0;
}

.btn-edit {
  border-radius: 8px;
  padding: 8px 14px;
}

/* Sidebar */
.account-side {
  padding: 24px 18px;
}

.account-user .account-avatar {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  margin: 0 auto 12px;
  background: #fff3e8;
  display: -ms-grid;
  display: grid;
  place-items: center;
}
.account-user .account-avatar i {
  font-size: 28px;
  color: var(--orange);
}
.account-user .account-name {
  color: var(--text);
}
.account-user .account-email {
  font-size: 14px;
  color: var(--muted);
}

.account-menu {
  display: -ms-grid;
  display: grid;
  gap: 10px;
  padding: 0 4px;
}
.account-menu .account-link {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 24px 10px 1fr 10px auto 10px 18px;
  grid-template-columns: 24px 1fr auto 18px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--text);
}
.account-menu .account-link:hover {
  background: #f9fafb;
}
.account-menu .account-link .icon {
  color: #9ca3af;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.account-menu .account-link .text {
  font-size: 15px;
  color: #374151;
  font-weight: 600;
}
.account-menu .account-link .count {
  font-size: 12px;
  color: var(--orange);
  background: #fff3e8;
  border-radius: 999px;
  padding: 4px 10px;
  line-height: 1;
}
.account-menu .account-link .arrow {
  color: #cbd5e1;
  font-size: 12px;
}
.account-menu .account-link.active {
  background: #fff;
  border: 1px solid var(--border);
}
.account-menu .account-link.logout {
  -ms-grid-columns: 24px 1fr;
  grid-template-columns: 24px 1fr;
  color: #ef4444;
}
.account-menu .account-link.logout .icon {
  color: #ef4444;
}
.account-menu .account-link.logout .text {
  color: #ef4444;
}
.account-menu .account-link.logout .count, .account-menu .account-link.logout .arrow {
  display: none;
}

/* Account info */
.account-info .info-item .label {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 2px;
}
.account-info .info-item .value {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.view-all {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
}
.view-all:hover {
  text-decoration: underline;
}

/* Recent orders */
.order-list {
  display: -ms-grid;
  display: grid;
  gap: 14px;
}

.order-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  background: #fff;
}
.order-item:hover {
  border-color: #d1d5db;
}
.order-item.active {
  border-color: var(--orange);
  -webkit-box-shadow: 0 8px 22px rgba(249, 115, 22, 0.12);
          box-shadow: 0 8px 22px rgba(249, 115, 22, 0.12);
}
.order-item .order-id {
  color: var(--text);
  margin-bottom: 3px;
}
.order-item .order-meta {
  font-size: 13px;
  color: var(--muted);
}
.order-item .right {
  text-align: right;
  min-width: 140px;
}
.order-item .order-price {
  color: var(--text);
  margin-bottom: 6px;
}
.order-item .order-status {
  font-size: 12px;
  border-radius: 999px;
  padding: 6px 12px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
}
.order-item .order-status.delivered {
  background: #fff3e8;
  color: var(--orange);
}
.order-item .order-status.processing {
  background: #fff7ed;
  color: #f59e0b;
}
.order-item .order-status.shipped {
  background: #eef2ff;
  color: #3b82f6;
}

/* Responsive tweaks */
@media (max-width: 575px) {
  .card-ui {
    padding: 16px;
  }
  .order-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .order-item .right {
    width: 100%;
    text-align: left;
    min-width: 0;
  }
}
/* ==========================
   Order Details Page
========================== */
.order-details-page {
  --orange: #f97316;
  --text: #111827;
  --muted: #6b7280;
  --border: #e5e7eb;
  --radius: 14px;
}

/* Reuse same card UI style from account page (safe if already exists) */
.order-details-page .card-ui {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}
.order-details-page .card-ui-title {
  font-size: 18px;
  color: var(--text);
  margin: 0 0 16px;
}

.od-breadcrumb {
  font-size: 14px;
  color: var(--muted);
}
.od-breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}
.od-breadcrumb a:hover {
  color: var(--text);
}
.od-breadcrumb span {
  margin: 0 6px;
}

/* Header card */
.od-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
}
.od-header .od-title {
  color: var(--text);
}
.od-header .od-sub {
  color: var(--muted);
  font-size: 14px;
}

.od-pill {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 999px;
}
.od-pill.delivered {
  background: #fff3e8;
  color: var(--orange);
}

/* Timeline */
.od-timeline {
  display: -ms-grid;
  display: grid;
  gap: 22px;
  margin-top: 4px;
}

.od-step {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 34px 14px 1fr;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  position: relative;
}
.od-step .dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 12px;
  margin-top: 2px;
  position: relative;
  z-index: 2;
}
.od-step {
  /* vertical line */
}
.od-step:not(.last)::after {
  content: "";
  position: absolute;
  left: 13px;
  top: 30px;
  width: 2px;
  height: calc(100% + 14px);
  background: var(--orange);
  opacity: 0.9;
}
.od-step .content .title {
  color: var(--text);
  margin-bottom: 2px;
}
.od-step .content .meta {
  font-size: 13px;
  color: var(--muted);
}

/* Items */
.od-items {
  display: -ms-grid;
  display: grid;
  gap: 14px;
}

.od-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 84px 14px 1fr 14px 120px;
  grid-template-columns: 84px 1fr 120px;
  gap: 14px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.od-item .thumb {
  width: 84px;
  height: 84px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #f9fafb;
  display: -ms-grid;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.od-item .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.od-item .name {
  color: var(--text);
  margin-bottom: 2px;
}
.od-item .qty {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 4px;
}
.od-item .price-row {
  font-size: 14px;
  color: var(--orange);
}
.od-item .price-row .mul {
  color: var(--orange);
  margin-left: 6px;
}
.od-item .total {
  text-align: right;
  color: var(--text);
}

/* Address */
.od-address {
  display: -ms-grid;
  display: grid;
  gap: 14px;
}
.od-address .row-item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 22px 12px 1fr;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.od-address .row-item .ic {
  color: var(--orange);
  font-size: 15px;
}
.od-address .row-item .strong {
  color: var(--text);
  line-height: 1.2;
}
.od-address .row-item .muted {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

/* Summary */
.od-summary .sum-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.od-summary .sum-row .label {
  color: var(--muted);
  font-size: 14px;
}
.od-summary .sum-row .value {
  color: var(--text);
  font-size: 14px;
}
.od-summary .sum-row.total {
  border-bottom: none;
  padding-top: 14px;
}
.od-summary .sum-row.total .label,
.od-summary .sum-row.total .value {
  font-size: 16px;
  font-weight: 900;
}
.od-summary .payment {
  margin-top: 14px;
  font-size: 13px;
}
.od-summary .payment .muted {
  color: var(--muted);
}
.od-summary .payment .strong {
  color: var(--text);
  margin-left: 6px;
}

/* Buttons */
.od-help .btn {
  border-radius: 10px;
  padding: 10px 12px;
}

/* Responsive */
@media (max-width: 575px) {
  .order-details-page .card-ui {
    padding: 16px;
  }
  .od-item {
    -ms-grid-columns: 84px 1fr;
    grid-template-columns: 84px 1fr;
        grid-template-areas: "thumb info" "total total";
  }
  .od-item .thumb {
    grid-area: thumb;
  }
  .od-item .info {
    grid-area: info;
  }
  .od-item .total {
    grid-area: total;
    text-align: left;
    padding-top: 6px;
  }
}
@media (max-width: 575px){
  .od-item .thumb {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .od-item .info {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .od-item .total {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
}
/* ==========================
   Order Thank You Page
========================== */
/* Card */
.thankyou-card {
  background: #fff;
  border: 1px solid var(--light-gray);
  border-radius: 14px;
  padding: 50px 30px;
}

/* Icon */
.thankyou-icon-wrap {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
}

.thankyou-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary-orange);
  color: #fff;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 26px;
  font-weight: 800;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Floating dots */
.dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.35);
}

.dot-1 {
  top: 10px;
  left: 20px;
}

.dot-2 {
  top: 0;
  right: 28px;
}

.dot-3 {
  bottom: 18px;
  left: 10px;
}

.dot-4 {
  bottom: 0;
  right: 20px;
}

/* Text */
.thankyou-title {
  font-size: 28px;
  color: var(--text);
  margin-bottom: 10px;
}

.thankyou-text {
  font-size: 15px;
  color: var(--dark-bg);
  max-width: 520px;
  margin: 0 auto 30px;
}
.thankyou-text strong {
  color: var(--dark-bg);
}

/* Buttons */
.thankyou-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 14px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.thankyou-actions .btn {
  min-width: 170px;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 700;
}
.thankyou-actions .btn-primary {
  background: var(--primary-orange);
  border: none;
}
.thankyou-actions .btn-primary:hover {
  background: rgb(229.3928870293, 97.4673640167, 5.9071129707);
}

/* Mobile */
@media (max-width: 575px) {
  .thankyou-card {
    padding: 36px 18px;
  }
  .thankyou-title {
    font-size: 24px;
  }
}
/* ==========================
   Order Tracking Page
   (Stage 1 + Stage 2)
   No new variables defined
========================== */
.order-track-page {
  background: #fff;
}

.order-track-head {
  margin-bottom: 18px;
}
.order-track-head .order-track-title {
  line-height: 1.1;
  margin: 0 0 10px;
  color: var(--dark-bg);
}
.order-track-head .order-track-sub {
  font-size: 15px;
  color: #6b7280;
  margin: 0;
}
.order-track-head .order-track-sub strong {
  color: var(--dark-bg);
}

/* Card shell (matches your account/order cards) */
.track-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 18px;
}

/* Search */
.track-search {
  padding: 18px;
}
.track-search .track-form {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 14px 150px;
  grid-template-columns: 1fr 150px;
  gap: 14px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.track-search .track-input {
  height: 48px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  padding: 0 14px;
  font-size: 14px;
}
.track-search .track-input:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: var(--primary-orange);
}
.track-search .track-btn {
  height: 48px;
  border-radius: 8px;
  font-weight: 800;
  border: none;
  background: var(--primary-orange);
  color: #fff;
}
.track-search .track-btn:hover {
  -webkit-filter: brightness(0.95);
          filter: brightness(0.95);
  color: #fff;
}

/* Empty state */
.track-empty {
  padding: 50px 18px;
  text-align: center;
}
.track-empty .empty-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: -ms-grid;
  display: grid;
  place-items: center;
  background: #f3f4f6;
  color: #6b7280;
}
.track-empty .empty-icon i {
  font-size: 18px;
}
.track-empty .empty-title {
  font-size: 16px;
  color: var(--dark-bg);
  margin: 0 0 6px;
}
.track-empty .empty-sub {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

/* Result header */
.track-order {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 14px;
  padding: 22px;
}
.track-order .track-order-title {
  font-size: 24px;
  margin: 0 0 6px;
  color: var(--dark-bg);
}
.track-order .track-order-sub {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}
.track-order .track-status-pill {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  background: #fff3e8;
  color: var(--primary-orange);
  white-space: nowrap;
}

/* Timeline */
.track-timeline {
  padding: 22px;
}
.track-timeline .track-section-title {
  font-size: 22px;
  margin: 0 0 18px;
  color: var(--dark-bg);
}

.timeline {
  display: -ms-grid;
  display: grid;
  gap: 22px;
}

.t-item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 34px 14px 1fr;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  position: relative;
}
.t-item .t-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary-orange);
  color: #fff;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 12px;
  margin-top: 2px;
  position: relative;
  z-index: 2;
}
.t-item:not(.last)::after {
  content: "";
  position: absolute;
  left: 13px;
  top: 30px;
  width: 2px;
  height: calc(100% + 14px);
  background: var(--primary-orange);
  opacity: 0.95;
}
.t-item .t-title {
  color: var(--dark-bg);
  margin-bottom: 2px;
}
.t-item .t-meta {
  font-size: 13px;
  color: #6b7280;
}

/* Responsive */
@media (max-width: 575px) {
  .track-search .track-form {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .track-search .track-btn {
    width: 100%;
  }
}
/*# sourceMappingURL=style.css.map */