 
    :root {
    --dark-blue: #0b1c2d;
--light-blue: #4da3ff;
--cream: #f9f9f6;
--text-light: #e6ecf2;
--text-white: #fff;
--hero-text: #2b2f4c;
--thm-color: #197fe6/*#22C55E/*#fe7506*/;
--green-more-light: #DCFCE7;
--green-light: #4ADE80;
--green-dark: #15803D;
--green-more-dark: #14532D;
--font-primary : 'Plus Jakarta Sans';
--font-secondary : 'Nunito';
    }

    body {
      font-family: var(--font-secondary);
      background: var(--cream);
      color: var(--dark-blue);
      transition: background .3s, color .3s;
      padding-bottom: 70px;
    }

  body.dark-mode {
background: var(--dark-blue);
color: var(--text-light);
}
    /* Header */
    .main-header {
      height: 60px;
      min-height: 60px;
      display: flex;
      align-items: center;
      z-index: 1030;
      background-color: var(--text-white);
      border-bottom: 2px solid var(--thm-color);
    }

    /* Header nav link colors */
.header-link {
color: var(--hero-text) !important;
font-weight: 500;
transition: color .25s ease;
}


.header-link:hover {
color: var(--thm-color) !important;
}

.active-link {
color: var(--thm-color) !important;
}

.mob-active{
  color: var(--hero-text) !important;
}

.main-logo{
  height: 50px;
  width:auto;
}

.logo-text{
  color: var(--thm-color);
  font-size: 22px !important;
  font-weight: 600;
}


    /* Hero */
    .hero-slider {
      height: 50vh;
      min-height: 320px;
    }

    .hero-slide {
      height: 50vh;
      background-size: cover;
      background-position: center;
      position: relative;
    }

    .hero-slide::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(11,28,45,.44);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: var(--text-white);
      animation: fadeIn 1.2s ease;
    }

    .hero-content h1 {
      font-size: 2.8rem;
      font-weight: 700;
    }

    .hero-content p {
      font-size: 1.1rem;
      opacity: .9;
      margin-bottom: 20px;
    }

    .header-search {
      width: 320px;
      position: relative;
    }

    .header-search input {
      padding-right: 40px;
      font-size: 14px;
    }

    .header-search-mob {
      width: 100%;
      position: relative;
    }

    .header-search-mob input {
      padding-right: 40px;
    }

    .search-btn {
      position: absolute;
      right: 10px;
      top: 50%;
      transform: translateY(-50%);
      background: none;
      border: none;
      cursor: pointer;
    }

    .header-link {
      display: flex;
      align-items: center;
      gap: 6px;
      font-weight: 500;
    }

    .header-link:hover {
      color: var(--light-blue);
    }
    .cart-menu-icon{
      color: var(--text-hello);
    }

    .icon-size{
      width: 40px;
      height: 40px;
    }

    /* Cart badge */
    .cart-badge {
      position: absolute;
      top: -6px;
      right: -8px;
      background: var(--thm-color);
      color: var(--text-white);
      font-size: 12px;
      border-radius: 50%;
      padding: 2px 6px;
    }

    /* Mobile bottom nav */
    .mobile-bottom {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 50px;
      background: var(--thm-color);
      display: flex;
      justify-content: space-around;
      align-items: center;
      z-index: 1030;
    }

    .mobile-bottom a {
      color: var(--text-white);
      text-decoration: none;
      font-size: 12px;
      display: flex;
      flex-direction: column;
      align-items: center;
      /*gap: 4px;*/
    }

    body.dark-mode .main-header,
    body.dark-mode .dropdown-menu {
      background: #0f253d !important;
      color: var(--text-light);
    }

    /* Hero arrows */
.hero-control {
width: 60px;
}


.hero-control .carousel-control-prev-icon,
.hero-control .carousel-control-next-icon {
background-size: 60% 60%;
filter: invert(20%) sepia(16%) saturate(1080%) hue-rotate(195deg);
}


.hero-control:hover .carousel-control-prev-icon,
.hero-control:hover .carousel-control-next-icon {
filter: invert(45%) sepia(82%) saturate(1400%) hue-rotate(190deg);
}

/*product card*/

.product-thumb {
  position: relative;
  overflow: hidden;
}

.product-thumb img {
  width: 100%;
  transition: transform 0.4s ease;
}

.product-card:hover .product-thumb img {
  transform: scale(1.08);
}

.product-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 
    transform .35s ease,
    box-shadow .35s ease;
}

/* Hover animation */
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
  border: 1px solid var(--green-light);
}

.product-card:hover .product-price {
  color: var(--thm-color) !important;
}

.product-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-card .card-body {
  padding: 12px 14px;
}

.product-card .card-title {
  margin-bottom: 4px;
  font-size: 17px !important;
  text-transform: capitalize;
  /*font-family: var(--font-header);*/
}

.product-card .card-text {
  margin-bottom: 8px;
  
}

.product-category{
  text-decoration: none;
  color: var(--thm-color) !important;
  font-size: 14px;
}

.product-price{
  font-weight: 600;
  font-size: 14px;
}


/* Cart icon button */
.add-cart-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0,0,0,.15);
  cursor: pointer;
  z-index: 2;
  transition: background .3s ease, transform .3s ease;
}

.add-cart-btn i {
  color: #2b2f4c;
  font-size: 16px;
}

.add-cart-btn:hover {
  background: var(--thm-color);
  transform: scale(1.1);
}

.add-cart-btn:hover i {
  color: var(--text-white);
}


/* PRODUCT CLIDER*/
.np-slider {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.np-track {
  display: flex;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  cursor: grab;
}

.np-track:active {
  cursor: grabbing;
}

.np-item {
  flex: 0 0 25%;
  padding: 0 6px;
}

.np-img {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

.np-img img {
  width: 100%;
  /*height: 320px;*/
  height: auto;
  object-fit: cover;
  transition: transform .6s ease;
}

.np-item:hover img {
  transform: scale(1.12);
}


/* Price overlay */
.price-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--thm-color);/*rgba(255,255,255,.95);*/
  padding: 4px 8px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 12px;
  color: var(--text-white);
  box-shadow: 0 6px 16px rgba(0,0,0,.15);
  z-index: 2;
}

.grid-col{
    padding-left: 6px;
    padding-right: 6px;
    padding-bottom: 10px;
}

/* Mobile */
@media (max-width: 767px) {
  .np-item {
    flex: 0 0 100%;
  }

  .np-img img {
    height: auto;
  }

  .product-category{
   display: none;
}
}



/*channel slider

.ch-slider {
  overflow: hidden;
  width: 100%;
  height: 300px;
}

.ch-track {
  display: flex;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  cursor: grab;
}

.ch-track:active {
  cursor: grabbing;
}

.ch-item {
  flex: 0 0 calc(100% / 7);
  padding: 10px 0px;
}

/* Card 
.ch-card {
  /*background: var(--text-white);
  border-radius: 16px;
  overflow: hidden;
  /*box-shadow: 0 10px 30px rgba(0,0,0,.08);
  transition: transform .3s ease;
  display: grid;
  place-items: center
}

.ch-card:hover {
  transform: translateY(-6px);
}

.ch-cover {
  width: 90%;
  height: auto;
  border: 4px #e9ecef solid;
  border-radius: 50%;
  /*padding: 15px;*/
  /*object-fit: cover;
}

.ch-name {
  text-align: center;
  font-weight: 600;
  color: var(--hero-text);
}

.ch-card a{
  text-decoration: none;
}

.ch-card a img{
  width:100px;
  height:auto;
}


/* User 
.ch-user {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 1px 10px 10px;
}

.ch-user img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.ch-link{
  
}

.ch-user small {
  display: block;
  color: #6c757d;
}

.category-number{
  position: fixed !important;
  bottom: 20px;
  right: 50%;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  display: block;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0,0,0,.15);
  cursor: pointer;
  z-index: 2;
  transition: background .3s ease, transform .3s ease;
}*/

/* Mobile 
@media (max-width: 767px) {
 
}

/*single product page*/

.single-product-card {
  border: none;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0,0,0,.08);
  background: var(--text-white);
  transition: transform .3s ease, box-shadow .3s ease;
}

.single-product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

.product-image-slider {
  position: relative;
  padding: 22px 12px;
}

.product-details{
    padding: 22px 12px 22px 0px;
}

.main-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

.main-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform .5s ease;
}

.thumb-caption{
   width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
}

.product-description p{
  font-size: 18px !important;
  line-height: 20px !important;
}

.video-container{
  margin: 20px 10px !important;
}

.main-image-wrapper:hover img {
  transform: scale(1.05);
}

/* Arrow Buttons */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.8);
  border: none;
  padding: 10px 14px;
  border-radius: 50%;
  cursor: pointer;
  transition: background .25s ease;
}

.slider-arrow:hover {
  background: var(--thm-color);
  color: var(--text-white);
}

.slider-arrow.prev { left: 12px; }
.slider-arrow.next { right: 12px; }

.thumb-images img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: transform .3s ease, border .3s ease;
  border: 2px solid transparent;
}

.thumb-images img:hover {
  transform: scale(1.1);
}

.thumb-images img.active {
  border: 2px solid var(--thm-color);
}


/* ===============================
   Channel Slider – Category View
================================ */

.ch-slider {
  width: 100%;
  max-width: 100%;
  overflow: hidden; /* CRITICAL */
  position: relative;
}

.ch-track {
  display: flex;
  width: max-content; /* allows sliding but obeys parent */
  gap: 18px;
  transition: transform 0.6s ease;
  will-change: transform;
  width: 100%;
}

.ch-item {
  min-width: 130px;
  text-align: center;
  cursor: pointer;
  user-select: none;
}

  .ch-item {
    width: calc(100% / 5); /* mobile */
  }

  .ch-item a{
    text-decoration: none;
  }

/* Round icon container */
.ch-icon-wrapper {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .35s ease, box-shadow .35s ease;
}

/* Hover animation */
.ch-icon-wrapper:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
}

.ch-icon-wrapper img {
  width: 70px;
  height: 70px;
}

/* Item count badge */
.ch-count {
  position: absolute;
  top: 10px;
  right: -6px;
  background: var(--dark-blue);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(0,0,0,.25);
}

/* Label under circle */
.ch-label {
  font-size: .95rem;
  font-weight: 500;
  color: var(--dark-blue);
}

/* Dark mode */
body.dark-mode .ch-icon-wrapper {
  background: #0f253c;
}

body.dark-mode .ch-label {
  color: #ffffff;
}


/* ===============================
   Category Grid Component
   (No Slider / No Conflict)
================================ */

.catg-item {
  cursor: pointer;
  user-select: none;
  margin-bottom: 15px;
}

.catg-icon-box {
  position: relative;
 /* width: 100%;
  max-width: 140px;*/
  height: 120px;
  margin: 0 auto 10px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .35s ease, box-shadow .35s ease;
}

/* Hover animation */
.catg-icon-box:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
}

.catg-icon-box img {
  width: 50%;
  height: auto;
}

/* Count badge */
.catg-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--dark-blue);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(0,0,0,.25);
}

/* Label */
.catg-label {
  font-size: .95rem;
  font-weight: 500;
  color: var(--dark-blue);
}

.catg-item a{
  text-decoration: none;
}

/* Dark mode support */
body.dark-mode .catg-icon-box {
  background: #0f253c;
}

body.dark-mode .catg-label {
  color: #ffffff;
}

/* ===============================
   Furniture Not Available Page
================================ */

.notfound-page {
  position: relative;
  height: 100vh;
  width: 100%;
  background: url('https://images.unsplash.com/photo-1615873968403-89e068629265') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notfound-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.notfound-content {
  position: relative;
  max-width: 520px;
  padding: 30px;
  color: #ffffff;
  z-index: 2;
}

.notfound-content h1 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.notfound-content p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 24px;
}

.notfound-content .btn {
  border-radius: 999px;
  font-weight: 500;
}

/* ===============================
   Simple Page Hero (Non Sliding)
================================ */

.page-hero {
  position: relative;
  height: 40vh;
  min-height: 280px;
  width: 100%;
  background: url('/images/shopleo_slide1.jpg')
              center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0.35)
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 0 16px;
  color: #ffffff;
}

.page-hero-content h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600;
  margin-bottom: 12px;
}

.page-hero-content p {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  opacity: 0.95;
}

.btn-primary{
  background-color: var(--thm-color) !important;
   border: 1px solid var(--thm-color);
}

.btn-primary:hover{
  border: 1px solid var(--thm-color);
  color: var(--thm-color);
  background-color: var(--text-white) !important;
}

.btn-outline-primary{
 border: 1px solid var(--thm-color);
  color: var(--thm-color);
}

.btn-outline-primary:hover{
  background-color: var(--thm-color) !important;
   border: 1px solid var(--thm-color);
  color: var(--text-white);
}

/* ===============================
   Cart Page
================================ */

.cart-card {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 14px 35px rgba(0,0,0,.08);
  overflow: hidden;
}

/* Header */
.cart-header {
  display: grid;
  grid-template-columns: 3fr 2fr 1.5fr 1.5fr;
  padding: 14px 18px;
  font-weight: 600;
  color: #2b2f4c;
  background: #f6f8fb;
}

/* Cart item */
.cart-item {
  display: grid;
  grid-template-columns: 3fr 2fr 1.5fr 1.5fr;
  align-items: center;
  padding: 16px 18px;
  border-top: 1px solid #eee;
}

/* Product */
.cart-product {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-product img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
}

.cart-product span {
  font-weight: 500;
  color: #2b2f4c;
}

/* Quantity */
.cart-qty {
  display: inline-flex;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #ddd;
  width: max-content;
  margin: auto;
}

.cart-qty input {
  width: 42px;
  text-align: center;
  border: none;
  outline: none;
  font-size: 14px;
}

.qty-btn {
  width: 34px;
  border: none;
  background: #f0f3f8;
  font-size: 16px;
  cursor: pointer;
  border: 1px var(--thm-color) solid;
}

.qty-btn:hover{
  background: var(--thm-color);
  color: var(--text-white);
}

.quantity-field {
        width: 60px;
        text-align: center;
    }

/* Price */
.cart-price,
.cart-total {
  text-align: right;
  font-weight: 500;
  color: #2b2f4c;
}

#big-total{
  font-weight: 700 !important;
}
/* ===============================
   Mobile View
================================ */

@media (max-width: 767px) {

  .cart-header {
    display: none;
  }

  .cart-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cart-product {
    gap: 10px;
  }

  .cart-qty {
    margin: 0;
  }

  .cart-price,
  .cart-total {
    text-align: left;
    font-size: 14px;
  }

  .cart-price::before {
    content: "Price: ";
    font-weight: 500;
  }

  .cart-total::before {
    content: "Total: ";
    font-weight: 500;
  }
}

/* ===============================
   Desktop Grid Update
================================ */

.cart-header,
.cart-item {
  grid-template-columns: 3fr 2fr 1.5fr 1.5fr 1fr;
}

/* ===============================
   Remove Button
================================ */

.remove-btn {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 8px;
  background: #ff4d4f;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

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

/* ===============================
   Mobile Layout
================================ */

.cart-mobile-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.cart-mobile-actions .price::before {
  content: "Price: ";
  font-weight: 500;
}

.cart-mobile-actions .total::before {
  content: "Total: ";
  font-weight: 500;
}
.cart-action{
  margin-left: 20px !important;
}

/* Hide desktop fields on mobile */
@media (max-width: 767px) {

  .cart-item {
    grid-template-columns: 1fr;
  }

  .cart-price,
  .cart-total,
  .cart-action {
    display: none;
  }
}

/* ===============================
   Auth Background
================================ */

.auth-wrapper {
  min-height: 100vh;
  background: url("https://images.unsplash.com/photo-1615873968403-89e068629265") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.auth-overlay {
  position: absolute;
  inset: 0;
  background: rgba(43, 47, 76, 0.7);
}

/* ===============================
   Auth Card
================================ */

.auth-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  z-index: 1;
}

/* ===============================
   Welcome
================================ */

.auth-welcome h2 {
  color: #2b2f4c;
  font-weight: 700;
}

.auth-welcome p {
  color: #6b7280;
  font-size: 14px;
}

/* ===============================
   Toggle Buttons
================================ */

.auth-toggle {
  display: flex;
  background: #f1f5f9;
  border-radius: 10px;
  overflow: hidden;
}

.auth-toggle button {
  flex: 1;
  padding: 10px;
  border: none;
  background: transparent;
  font-weight: 600;
  color: #2b2f4c;
  cursor: pointer;
}

.auth-toggle button.active {
  background: #2b2f4c;
  color: #ffffff;
}

/* ===============================
   Forms
================================ */

.auth-form label {
  font-size: 14px;
  font-weight: 600;
  color: #2b2f4c;
}

.auth-form input {
  height: 44px;
  border-radius: 8px;
}

.auth-link{
  text-decoration: none !important;
  color: var(--dark-blue);
}


/* ===============================
   Profile Card
================================ */
.profile-card {
  border-radius: 16px;
  border: none;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* ===============================
   Orders
================================ */
.order-item {
  display: grid;
  grid-template-columns: 70px 1fr 80px 80px;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.order-item img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
}

.order-info h6 {
  margin: 0;
  font-size: 14px;
  color: #2b2f4c;
}

.order-price,
.order-total {
  font-weight: 600;
  text-align: right;
}

.order-item.muted {
  opacity: 0.6;
}

/* ===============================
   Avatar
================================ */
.avatar-wrapper {
  display: flex;
  justify-content: center;
}

.profile-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #e5e7eb;
}

/* ===============================
   Tabs
================================ */
.nav-tabs .nav-link {
  color: #2b2f4c;
  font-weight: 600;
}

.nav-tabs .nav-link.active {
  color: var(--thm-color);
}

.img-border{
  border: 1px solid var(--green-light);
}

.how-it-works {
  padding: 10px 10px;
  background: #F9FAFB;
}

.steps-grid {
  /*max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;*/
}

.step-card {
  background: #FFFFFF;
  padding: 10px 10px;
  border-radius: 14px;
  border: 1px solid #E5E7EB;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease forwards;
}

.step-card:nth-child(1) { animation-delay: 0.1s; }
.step-card:nth-child(2) { animation-delay: 0.3s; }
.step-card:nth-child(3) { animation-delay: 0.5s; }
.step-card:nth-child(4) { animation-delay: 0.7s; }

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  border-color: var(--thm-color);
}

.step-number {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 16px;
  font-weight: 600;
  background: var(--thm-color);
  color: var(--text-white);
  padding: 6px 12px;
  border-radius: 20px;
}

.step-icon {
  font-size: 42px;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.step-card:hover .step-icon {
  transform: scale(1.15) rotate(5deg);
}

.step-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #1F2937;
}

.step-card p {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.6;
}

svg{
  width: 20px !important;
  height: 20px !important;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.orders-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Card */
.order-card {
  display: grid;
  grid-template-columns: 100px 1fr 150px;
  gap: 20px;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid #E5E7EB;
  background: #fff;
  transition: 0.3s ease;
}

.order-card:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* Image */
.order-image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

/* Details */
.product-name {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 600;
  color: #111827;
}

.order-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 14px;
  margin-bottom: 6px;
  color: #374151;
}

.order-date {
  font-size: 13px;
  color: #6B7280;
  margin-top: 6px;
}

/* Action */
.order-action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.cancel-btn {
  padding: 6px 10px;
  border-radius: 8px;
  border: none;
  background: #EF4444;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: 0.25s ease;
}

.cancel-btn:hover {
  background: #DC2626;
}

.status-badge {
  background: #DCFCE7;
  color: #15803D;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
}

.empty-orders {
  text-align: center;
  padding: 60px 20px;
  border: 1px dashed #E5E7EB;
  border-radius: 14px;
  background: #F9FAFB;
}

.empty-icon {
  font-size: 48px;
  margin-bottom: 15px;
  opacity: 0.6;
}

.empty-orders h4 {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 600;
  color: #111827;
}

.empty-orders p {
  font-size: 14px;
  color: #6B7280;
  margin-bottom: 20px;
}

.shop-btn {
  display: inline-block;
  padding: 10px 18px;
  background: #22C55E;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.25s ease;
}

.shop-btn:hover {
  background: #16A34A;
}

/* ============================= */
/* MOBILE RESPONSIVE */
/* ============================= */

@media (max-width: 768px) {
  .order-card {
    grid-template-columns: 1fr;
    text-align: left;
     padding: 10px;
  border-radius: 8px;
  }

  .order-image img {
    width: 100%;
    max-height: 200px;
  }

  .order-action {
    justify-content: flex-start;
    margin-top: 10px;
  }
}

/* ===============================
   Mobile
================================ */
@media (max-width: 767px) {

   .main-header {
      height: 55px;
      min-height: 55px;
   }

   .main-logo{
  height: 40px;
  width:auto;
}

  .order-item {
    grid-template-columns: 70px 2fr;
    row-gap: 6px;
  }

  .order-price,
  .order-total {
    grid-column: span 1;
    text-align: left;
    font-size: 13px;
  }
}



