
    /* =========================================
SMARTPHONE RESPONSIVE NAVBAR
========================================= */

@media(max-width:768px){

  /* TOP BAR */
  .top-bar{
    padding:6px 0;
  }

  .top-bar .d-flex{
    flex-direction:row !important;
    justify-content:center !important;
    gap:12px;
    flex-wrap:wrap;
  }

  .top-item{
    font-size:11px;
  }

  /* NAVBAR */
  .custom-navbar{
    padding:10px 0 15px;
  }

  .custom-navbar .container{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
  }

  /* LOGO */
  .navbar-brand{
    width:auto;
    margin:0;
  }

  .logo-box{
    padding:4px 8px;
  }

  .logo-box img{
    width:120px;
    height:auto;
  }

  /* HAMBURGER */
  .navbar-toggler{
    margin-left:auto;
    border:none;
    padding:8px 12px;
    border-radius:12px;
  }

  .navbar-toggler:focus{
    box-shadow:none;
  }

  /* COLLAPSE */
  .navbar-collapse{
    width:100%;
    margin-top:15px;
  }

  /* SEARCH + CATEGORY ROW */
  .mobile-search-row{
    display:flex;
    align-items:center;
    gap:10px;
    width:100%;
  }

  /* SEARCH */
  .search-box{
    flex:1;
    margin:0 !important;
    max-width:none;
  }

  .search-box input{
    height:48px;
    font-size:14px;
    padding-left:16px;
    padding-right:50px;
  }

  .search-btn{
    width:38px;
    height:38px;
  }

  /* CATEGORY BUTTON */
  .mobile-category-btn{
    flex-shrink:0;
  }

  .mobile-category-btn .category-btn{
    height:48px;
    padding:0 14px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
  }

  .mobile-category-btn .category-btn span{
    display:none;
  }

  /* RIGHT NAV */
  .d-lg-flex.align-items-center{
    margin-top:15px;
    display:flex;
    flex-direction:column;
    gap:10px;
    width:100%;
  }

  .nav-item-custom{
    width:100%;
    margin:0;
    background:rgba(255,255,255,0.12);
    border-radius:14px;
  }

  /* CATEGORY BAR */
  .category-bar{
    display:none;
  }

  /* MARKET LINKS */
  .market-links{
    width:100%;
    overflow-x:auto;
    flex-wrap:nowrap !important;
    padding-bottom:5px;
  }

  .market-link{
    white-space:nowrap;
    flex-shrink:0;
  }

  /* BUY/SELL */
  .market-btn{
    width:100%;
  }

}

    body{
      margin:0;
      background:#F4EFE7;
      font-family:Arial, Helvetica, sans-serif;
    }

    /* TOP BAR */
    .top-bar{
      background:#F4A261;
      color:#fff;
      padding:8px 0;
      font-size:14px;
    }

    .top-item{
      display:flex;
      align-items:center;
      gap:6px;
      font-weight:500;
    }

    /* NAVBAR */
    .custom-navbar{
      background:#9FD3F2;
      padding:12px 0;
      box-shadow:0 2px 12px rgba(0,0,0,0.08);
    }

    /* LOGO */
    .navbar-brand{
      display:flex;
      align-items:center;
    }

    .logo-box{
      background:#fff;
      border-radius:14px;
      padding:5px 10px;
      box-shadow:0 3px 10px rgba(0,0,0,0.12);
    }

    /* SEARCH */
    .search-box{
      position:relative;
      width:100%;
      max-width:550px;
    }

    .search-box input{
      width:100%;
      border:none;
      outline:none;
      border-radius:50px;
      padding:12px 55px 12px 20px;
      font-size:15px;
      background:#ffffff;
      box-shadow:0 2px 10px rgba(0,0,0,0.08);
    }

    .search-btn{
      position:absolute;
      top:50%;
      right:6px;
      transform:translateY(-50%);
      width:40px;
      height:40px;
      border:none;
      border-radius:50%;
      background:#F4A261;
      color:#fff;
      transition:0.3s;
    }

    .search-btn:hover{
      background:#e38b3f;
    }

    /* NAV ITEMS */
    .nav-item-custom{
      display:flex;
      align-items:center;
      gap:10px;
      text-decoration:none;
      color:#fff !important;
      padding:10px 14px;
      border-radius:12px;
      transition:all 0.3s ease;
      margin-left:10px;
    }

    .nav-item-custom:hover{
      background:rgba(255,255,255,0.18);
      transform:translateY(-2px);
    }

    .icon-style{
      font-size:22px;
    }

    .small-text{
      font-size:12px;
      line-height:1;
      opacity:0.9;
    }

    .big-text{
      font-size:15px;
      font-weight:600;
      line-height:1.2;
    }

    /* DROPDOWN */
    .dropdown-menu{
      border:none;
      border-radius:14px;
      padding:10px 0;
      box-shadow:0 8px 25px rgba(0,0,0,0.12);
    }

    .dropdown-item{
      padding:10px 18px;
      transition:0.3s;
    }

    .dropdown-item:hover{
      background:#EAF4FA;
      color:#F4A261;
    }

    /* CART */
    .cart-wrapper{
      position:relative;
    }

    .cart-count{
      position:absolute;
      top:-8px;
      right:-10px;
      width:20px;
      height:20px;
      border-radius:50%;
      background:#ffffff;
      color:#F4A261;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:12px;
      font-weight:bold;
    }

    /* CATEGORY BAR */
    .category-bar{
      background:#ffffff;
      padding:12px 0;
      box-shadow:0 2px 10px rgba(0,0,0,0.05);
    }

    .category-links{
      display:flex;
      flex-wrap:wrap;
      gap:15px;
      align-items:center;
    }

    .category-links a{
      text-decoration:none;
      color:#444;
      font-weight:600;
      transition:0.3s;
    }

    .category-links a:hover{
      color:#F4A261;
    }

    /* BUTTONS */
    .market-btn{
      border:none;
      padding:10px 20px;
      border-radius:30px;
      font-weight:600;
      transition:0.3s;
    }

    .buy-btn{
      background:#9FD3F2;
      color:#fff;
    }

    .buy-btn:hover{
      background:#84c6eb;
    }

    .sell-btn{
      background:#F4A261;
      color:#fff;
    }

    .sell-btn:hover{
      background:#e38b3f;
    }

    /* MOBILE */
    @media(max-width:991px){

      .search-box{
        margin:15px 0;
      }

      .nav-item-custom{
        margin-left:0;
        margin-top:8px;
      }

      .top-bar .d-flex{
        flex-direction:column;
        gap:8px;
      }

      .category-links{
        margin-bottom:15px;
      }
    }
    /* CATEGORY BAR */
.category-bar{
  background:#ffffff;
  padding:14px 0;
  border-top:1px solid rgba(0,0,0,0.05);
  box-shadow:0 2px 8px rgba(0,0,0,0.04);
}

/* CATEGORY BUTTON */
.category-btn{
  background:#ffffff;
  border:2px solid #9FD3F2;
  color:#333;
  font-weight:600;
  padding:10px 22px;
  border-radius:14px;
  transition:0.3s ease;
  box-shadow:0 4px 12px rgba(0,0,0,0.05);
}

.category-btn:hover{
  background:#9FD3F2;
  color:#fff;
  border-color:#9FD3F2;
}

/* DROPDOWN */
.category-dropdown{
  position:relative;
}

/* SHOW ON HOVER */
.category-dropdown:hover .dropdown-menu{
  display:block;
  margin-top:0;
}

/* CATEGORY MENU */
.category-menu{
  border:none;
  border-radius:18px;
  padding:12px 0;
  min-width:270px;
  margin-top:12px;
  box-shadow:0 10px 35px rgba(0,0,0,0.12);
  animation:fadeIn 0.2s ease;
}

/* DROPDOWN ITEMS */
.category-menu .dropdown-item{
  padding:14px 20px;
  font-size:15px;
  font-weight:500;
  color:#444;
  display:flex;
  align-items:center;
  gap:12px;
  transition:all 0.3s ease;
}

/* HOVER EFFECT */
.category-menu .dropdown-item:hover{
  background:#F4EFE7;
  color:#F4A261;
  padding-left:26px;
}

/* ICONS */
.category-menu .dropdown-item i{
  font-size:18px;
  color:#9FD3F2;
}

/* BUY / SELL BUTTONS */
.market-btn{
  border:none;
  padding:11px 24px;
  border-radius:14px;
  font-weight:600;
  transition:0.3s;
  box-shadow:0 4px 10px rgba(0,0,0,0.08);
}

.buy-btn{
  background:#9FD3F2;
  color:#fff;
}

.buy-btn:hover{
  background:#87c6e8;
  transform:translateY(-2px);
}

.sell-btn{
  background:#F4A261;
  color:#fff;
}

.sell-btn:hover{
  background:#e38b3f;
  transform:translateY(-2px);
}

/* ANIMATION */
@keyframes fadeIn{
  from{
    opacity:0;
    transform:translateY(10px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* CAROUSEL */
#marketCarousel{
  margin-top:18px;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 6px 20px rgba(0,0,0,0.08);
}

/* SMALL HEIGHT IMAGES */
.carousel-img{
  height:280px;
  object-fit:cover;
  filter:brightness(75%);
}

/* CAPTION */
.carousel-caption{
  bottom:50%;
  transform:translateY(50%);
}

/* TITLE */
.carousel-caption h2{
  font-size:34px;
  font-weight:700;
  color:#fff;
  margin-bottom:10px;
}

/* TEXT */
.carousel-caption p{
  font-size:16px;
  color:#f8f9fa;
  margin-bottom:18px;
}

/* BUTTON */
.shop-btn{
  border:none;
  background:#F4A261;
  color:#fff;
  padding:12px 26px;
  border-radius:30px;
  font-weight:600;
  transition:0.3s;
}

.shop-btn:hover{
  background:#e38b3f;
  transform:translateY(-2px);
}

/* INDICATORS */
.carousel-indicators button{
  width:10px;
  height:10px;
  border-radius:50%;
}

/* MOBILE */
@media(max-width:768px){

  .carousel-img{
    height:180px;
  }

  .carousel-caption h2{
    font-size:22px;
  }

  .carousel-caption p{
    font-size:13px;
  }

  .shop-btn{
    padding:8px 18px;
    font-size:14px;
  }

}
/* MARKET LINKS */
.market-links{
  margin-left:10px;
}

/* LINK STYLE */
.market-link{
  text-decoration:none;
  padding:11px 18px;
  border-radius:14px;
  font-weight:600;
  display:flex;
  align-items:center;
  gap:8px;
  transition:0.3s ease;
  font-size:15px;
  color:#444;
  background:#fff;
  box-shadow:0 4px 10px rgba(0,0,0,0.05);
}

/* ICONS */
.market-link i{
  font-size:16px;
}

/* FLASH SALES */
.flash-link{
  border:2px solid #F4A261;
}

.flash-link i{
  color:#F4A261;
}

.flash-link:hover{
  background:#F4A261;
  color:#fff;
  transform:translateY(-2px);
}

.flash-link:hover i{
  color:#fff;
}

/* DISCOVER */
.discover-link{
  border:2px solid #9FD3F2;
}

.discover-link i{
  color:#9FD3F2;
}

.discover-link:hover{
  background:#9FD3F2;
  color:#fff;
  transform:translateY(-2px);
}

.discover-link:hover i{
  color:#fff;
}

/* TOP SELLERS */
.seller-link{
  border:2px solid #ffd166;
}

.seller-link i{
  color:#ffb703;
}

.seller-link:hover{
  background:#ffd166;
  color:#fff;
  transform:translateY(-2px);
}

.seller-link:hover i{
  color:#fff;
}

/* MOBILE */
@media(max-width:768px){

  .market-links{
    margin-left:0;
    margin-top:12px;
  }

  .market-link{
    font-size:14px;
    padding:10px 14px;
  }

}
/* =========================
QUICK ACTIONS
========================= */

.quick-actions-section{
  padding-top:35px;
}

.quick-card{
  background:#fff;
  border-radius:22px;
  padding:22px 15px;
  display:block;
  text-align:center;
  transition:0.35s ease;
  box-shadow:0 6px 18px rgba(0,0,0,0.05);
  height:100%;
}

.quick-card:hover{
  transform:translateY(-6px);
  box-shadow:0 12px 25px rgba(0,0,0,0.10);
}

.quick-icon{
  width:70px;
  height:70px;
  margin:auto;
  border-radius:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:16px;
}

.quick-icon i{
  font-size:28px;
  color:#fff;
}

/* COLORS */
.coupon-bg{
  background:#F4A261;
}

.trending-bg{
  background:#ff6b6b;
}

.shipping-bg{
  background:#4dabf7;
}

.star-bg{
  background:#ffd43b;
}

.gift-bg{
  background:#9775fa;
}

.quick-card h6{
  color:#333;
  font-weight:700;
  margin-bottom:5px;
}

.quick-card p{
  color:#777;
  font-size:14px;
  margin:0;
}

/* =========================
SECTION HEADER
========================= */

.section-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:25px;
}

.section-header h3{
  font-size:30px;
  font-weight:700;
  color:#333;
}

.section-header a{
  text-decoration:none;
  color:#F4A261;
  font-weight:600;
}

/* =========================
PRODUCT SECTIONS
========================= */

.product-section,
.recommend-section{
  padding:55px 0;
}

/* PRODUCT CARD */
.product-card{
  background:#fff;
  border-radius:24px;
  overflow:hidden;
  transition:0.35s ease;
  box-shadow:0 6px 18px rgba(0,0,0,0.05);
  position:relative;
}

.product-card:hover{
  transform:translateY(-8px);
  box-shadow:0 14px 30px rgba(0,0,0,0.12);
}

/* IMAGE */
.product-img{
  width:100%;
  height:230px;
  object-fit:cover;
}

/* BODY */
.product-body{
  padding:18px;
}

/* TITLE */
.product-title{
  font-size:18px;
  font-weight:700;
  color:#333;
  margin-bottom:10px;
}

/* PRICE */
.product-prices{
  font-size:24px;
  color:#F4A261;
  font-weight:700;
  margin-bottom:5px;
}

/* BUTTON */
.product-btn{
  width:100%;
  border:none;
  background:#9FD3F2;
  color:#fff;
  padding:12px;
  border-radius:14px;
  font-weight:600;
  transition:0.3s;
}

.product-btn:hover{
  background:#87c6e8;
}

/* TRENDING BADGE */
.trending-badge{
  position:absolute;
  top:15px;
  left:15px;
  background:#ff6b6b;
  color:#fff;
  font-size:13px;
  font-weight:700;
  padding:6px 14px;
  border-radius:30px;
  z-index:2;
}

/* MOBILE */
@media(max-width:768px){

  .section-header h3{
    font-size:22px;
  }

  .product-img{
    height:190px;
  }

  .quick-icon{
    width:60px;
    height:60px;
  }

}

/* =========================================
RECOMMENDED SECTION
========================================= */


.recommend-section{
  background:#f7f9fc;  /* light clean gray-blue */
  padding:20px 0;
}

/* HEADER */
.section-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:35px;
  flex-wrap:wrap;
  gap:15px;
}

.section-title{
  font-size:34px;
  font-weight:700;
  color:#333;
}

.section-title i{
  color:#9FD3F2;
}

.section-subtitle{
  color:#777;
  margin-top:5px;
}

/* VIEW ALL */
.view-all-btn{
  background:#F4A261;
  color:#fff;
  text-decoration:none;
  padding:12px 22px;
  border-radius:14px;
  font-weight:600;
  transition:0.3s;
}

.view-all-btn:hover{
  background:#e38b3f;
  color:#fff;
}

/* CARD */
.recommend-card{
  background:#fff;
  border-radius:24px;
  overflow:hidden;
  transition:0.35s ease;
  box-shadow:0 6px 18px rgba(0,0,0,0.06);
  height:100%;
}

.recommend-card:hover{
  transform:translateY(-8px);
  box-shadow:0 14px 35px rgba(0,0,0,0.12);
}

/* IMAGE */
.recommend-image-wrapper{
  position:relative;
}

.recommend-image{
  width:100%;
  height:240px;
  object-fit:cover;
  transition:0.4s ease;
}

.recommend-card:hover .recommend-image{
  transform:scale(1.05);
}

/* WISHLIST */
.wishlist-btn{
  position:absolute;
  top:14px;
  right:14px;
  width:42px;
  height:42px;
  border:none;
  border-radius:50%;
  background:#fff;
  color:#F4A261;
  font-size:18px;
  box-shadow:0 4px 12px rgba(0,0,0,0.10);
}

/* CONTENT */
.recommend-content{
  padding:12px 14px;
}

/* TITLE */
.recommend-title{
  font-size:15px;
  margin:0 0 4px 0;
  line-height:1.15;
  min-height:0;
  text-decoration:none;   
}

/* RATING */
.product-rating{
  display:flex;
  align-items:center;
  gap:3px;
  margin-bottom:15px;
}

.product-rating i{
  color:#ffc107;
  font-size:14px;
}

.product-rating span{
  color:#777;
  margin-left:6px;
}

/* PRICE */
.price-wrapper{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:2px;
}

.new-price{
  font-size:18px;
  line-height:1;
  font-weight: 700;
  margin:0;
  color:#000;
  display:inline-block;
}

.old-price{
  color:#999;
  text-decoration:line-through;
}

/* BUTTON */
.recommend-btn{
  width:100%;
  border:none;
  background:#9FD3F2;
  color:#fff;
  padding:13px;
  border-radius:14px;
  font-weight:600;
  transition:0.3s;
}

.recommend-btn:hover{
  background:#87c6e8;
}
/* =========================
COMPACT CARD HEIGHT FIX
========================= */

.compact-card{
  border-radius:18px;
}

/* smaller image */
.compact-card .recommend-image{
  height:170px;   /* reduced height */
}

/* supplier name */
.supplier-name{
  font-size:12px;
  color:#888;
  margin-bottom:5px;
  font-weight:500;
}


/* price row compact */
.price-row{
  margin-bottom:6px;
}

/* discount badge improved */
.discount-badge{
  position:absolute;
  top:10px;
  left:10px;
  background:linear-gradient(135deg,#ff4d4d,#ff7a7a);
  color:#fff;
  padding:5px 10px;
  border-radius:20px;
  font-size:12px;
  font-weight:700;
  box-shadow:0 4px 10px rgba(0,0,0,0.15);
}

/* old price smaller */
.old-price{
  font-size:13px;
}



/* compact button */
.recommend-btn{
  padding:10px;
  font-size:14px;
  border-radius:12px;
}
/* =========================
SUPPLIER NAME STYLE
========================= */
.supplier-rating{
  margin-top:4px;
  font-size:13px;
}
.supplier-name{
  font-size:12px;
  font-weight:600;
  color:#9FD3F2;              /* soft brand blue */
  margin-bottom:6px;
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:3px 10px;
  border-radius:20px;
  background:rgba(159, 211, 242, 0.15);
  width:fit-content;
  transition:0.3s ease;
}

/* small dot indicator (optional visual cue) */
.supplier-name::before{
  content:"";
  width:6px;
  height:6px;
  border-radius:50%;
  background:#F4A261;
  display:inline-block;
}

/* hover effect */
.recommend-card:hover .supplier-name{
  background:rgba(159, 211, 242, 0.25);
  transform:translateX(2px);
}
.interest-section{
  background:#F4EFE7;
}

/* MAIN HEADER WRAPPER */
.interest-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:25px;
  padding:18px 20px;
  background:#ffffff;
  border-radius:18px;
  box-shadow:0 6px 20px rgba(0,0,0,0.05);
}

/* LEFT SIDE */
.interest-title-wrap{
  display:flex;
  align-items:center;
  gap:14px;
}

/* ICON CIRCLE */
.interest-icon{
  width:50px;
  height:50px;
  border-radius:14px;
  background:linear-gradient(135deg,#9FD3F2,#F4A261);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:20px;
}

/* TITLE */
.interest-title{
  font-size:22px;
  font-weight:700;
  margin:0;
  color:#333;
}

/* SUBTITLE */
.interest-subtitle{
  margin:0;
  font-size:13px;
  color:#777;
}

/* ACTION BUTTONS */
.interest-actions{
  display:flex;
  gap:10px;
}

/* BUTTON STYLE */
.interest-filter,
.interest-refresh{
  border:none;
  padding:10px 14px;
  border-radius:12px;
  font-size:14px;
  font-weight:600;
  cursor:pointer;
  transition:0.3s;
  display:flex;
  align-items:center;
  gap:6px;
}

/* FILTER BUTTON */
.interest-filter{
  background:#eef6ff;
  color:#333;
}

.interest-filter:hover{
  background:#dceeff;
}

/* REFRESH BUTTON */
.interest-refresh{
  background:#F4A261;
  color:#fff;
}

.interest-refresh:hover{
  background:#e38b3f;
  transform:translateY(-2px);
}

/* MOBILE */
@media(max-width:768px){
  .interest-header{
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
  }

  .interest-actions{
    width:100%;
    justify-content:flex-end;
  }
}
.interest-filters{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.cat-btn{
  border:1px solid #ddd;
  background:#fff;
  padding:6px 14px;
  border-radius:20px;
  font-size:13px;
  cursor:pointer;
  transition:0.3s;
}

.cat-btn:hover{
  background:#eef6ff;
  border-color:#9FD3F2;
}

.cat-btn.active{
  background:#9FD3F2;
  color:#fff;
  border-color:#9FD3F2;
}
.recommend-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:linear-gradient(135deg,#ffffff,#f7fbff);
  padding:18px 20px;
  border-radius:18px;
  box-shadow:0 8px 25px rgba(0,0,0,0.06);
  margin-bottom:25px;
}

/* LEFT SIDE */
.recommend-left{
  display:flex;
  align-items:center;
  gap:14px;
}

/* ICON */
.recommend-icon{
  width:52px;
  height:52px;
  border-radius:14px;
  background:linear-gradient(135deg,#9FD3F2,#F4A261);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:20px;
  box-shadow:0 6px 15px rgba(0,0,0,0.08);
}

/* MAIN TITLE */
.recommend-title-main{
  font-size:22px;
  font-weight:800;
  margin:0;
  color:#333;
}

/* SUBTITLE */
.recommend-subtitle{
  margin:0;
  font-size:13px;
  color:#777;
}

/* RIGHT SIDE */
.recommend-right{
  display:flex;
  align-items:center;
  gap:10px;
}

/* BADGE */
.recommend-badge{
  background:#eef6ff;
  color:#333;
  padding:8px 12px;
  border-radius:20px;
  font-size:13px;
  font-weight:600;
  display:flex;
  align-items:center;
  gap:6px;
}

.recommend-badge i{
  color:#F4A261;
}

/* BUTTON */
.recommend-refresh{
  border:none;
  background:#F4A261;
  color:#fff;
  padding:9px 14px;
  border-radius:12px;
  font-weight:600;
  display:flex;
  align-items:center;
  gap:6px;
  cursor:pointer;
  transition:0.3s;
}

.recommend-refresh:hover{
  background:#e38b3f;
  transform:translateY(-2px);
}

/* MOBILE */
@media(max-width:768px){
  .recommend-header{
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
  }

  .recommend-right{
    width:100%;
    justify-content:flex-end;
  }
}
#loadMoreBtn{
  background:#F4A261;
  color:#fff;
  border:none;
  padding:12px 28px;
  border-radius:14px;
  font-weight:600;
  transition:0.3s ease;
  box-shadow:0 6px 15px rgba(244,162,97,0.25);
}

#loadMoreBtn:hover{
  background:#e38b3f;
  transform:translateY(-2px);
  box-shadow:0 10px 20px rgba(244,162,97,0.35);
}

#loadMoreBtn:disabled{
  background:#ccc;
  color:#666;
  box-shadow:none;
  cursor:not-allowed;
  transform:none;
}
/* MOBILE SEARCH OUTSIDE HAMBURGER */
.mobile-search-wrapper{
  width:100%;
  margin-top:14px;
}

.mobile-search-row{
  display:flex;
  align-items:center;
  gap:10px;
}

.mobile-category-btn .category-btn{
  width:50px;
  height:50px;
  padding:0;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
}

.mobile-category-btn .dropdown-toggle::after{
  display:none;
}
/* =========================================
MOBILE CATEGORIES
========================================= */

.mobile-categories{
  padding:7px 0 5px;
  background:#F4EFE7;
}

.mobile-cat-scroll{
  display:flex;
  gap:14px;
  overflow-x:auto;
  padding-bottom:8px;
  scrollbar-width:none;
}

.mobile-cat-scroll::-webkit-scrollbar{
  display:none;
}

/* ITEM */
.mobile-cat-item{
  min-width:85px;
  text-decoration:none;
  text-align:center;
  color:#333;
  flex-shrink:0;
}

/* ICON */
.mobile-cat-icon{
  width:65px;
  height:65px;
  margin:auto;
  border-radius:20px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 5px 15px rgba(0,0,0,0.06);
  margin-bottom:8px;
  transition:0.3s ease;
}

.mobile-cat-icon i{
  font-size:24px;
  color:#F4A261;
}

/* TEXT */
.mobile-cat-item span{
  font-size:12px;
  font-weight:600;
  display:block;
}

/* HOVER */
.mobile-cat-item:hover .mobile-cat-icon{
  transform:translateY(-4px);
  background:#F4A261;
}

.mobile-cat-item:hover .mobile-cat-icon i{
  color:#fff;
}
/* =========================
HAMBURGER MOBILE MENU
========================= */

.mobile-hamburger-menu{
  display:flex;
  flex-direction:column;
  gap:10px;
}

/* BUTTON STYLE */
.mobile-menu-btn{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius:14px;
  text-decoration:none;
  font-weight:600;
  color:#333;
  background:#fff;
  box-shadow:0 4px 12px rgba(0,0,0,0.06);
  transition:0.3s ease;
}

/* HOVER */
.mobile-menu-btn:hover{
  transform:translateX(4px);
  background:#f7f7f7;
}

/* ICON */
.mobile-menu-btn i{
  font-size:18px;
  color:#9FD3F2;
}

/* SELL BUTTON */
.mobile-menu-btn.sell{
  background:#F4A261;
  color:#fff;
}

.mobile-menu-btn.sell i{
  color:#fff;
}

/* REGISTER BUTTON */
.mobile-menu-btn.register{
  background:#9FD3F2;
  color:#fff;
}

.mobile-menu-btn.register i{
  color:#fff;
}
.mobile-search-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Search takes full available space */
.search-box {
  flex: 1;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

/* input */
.search-box input {
  flex: 1;
  border: none;
  outline: none;
  padding: 8px 10px;
  font-size: 14px;
}

/* search button */
.search-btn {
  border: none;
  background: #ff6f00;
  color: #fff;
  padding: 8px 12px;
}

/* cart icon */
.mobile-cart {
  position: relative;
  font-size: 20px;
  color: #111;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-icon {
  position: relative;
  font-size: 22px;
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  text-decoration: none;
}

/* badge */
.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #ff3b30;
  color: #fff;
  font-size: 11px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* MOBILE override ONLY if needed */
@media (max-width: 991px) {
  .cart-icon {
    font-size: 20px;
    padding: 5px;
  }

  .cart-badge {
    top: -5px;
    right: -5px;
  }
}

/* badge */
.cart-badge {
  position: absolute;
  top: -4px;
  right: 0;
  background: red;
  color: #fff;
  font-size: 11px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* =========================
OFFCANVAS CUSTOM STYLE
========================= */

.offcanvas{
  width:280px;
  background:#F4EFE7;
}

.offcanvas-header{
  border-bottom:1px solid rgba(0,0,0,0.05);
}

.offcanvas-title{
  font-weight:700;
}

/* MENU ITEMS (reuse your existing style) */
.mobile-hamburger-menu{
  display:flex;
  flex-direction:column;
  gap:10px;
}

