
:root{
  --brand-orange:#ed1c24;
  --brand-orange-dark:#c8151c;
  --ink:#1c2029;
  --ink-soft:#5b6270;
  --bg-soft:#f2f4f7;
  --line:#e6e8ec;
  --price-green:#1a9c4a;
}
*{box-sizing:border-box;}
body{
  font-family:'Inter',system-ui,-apple-system,sans-serif;
  color:var(--ink);
  background:#fff;
  font-size:14.5px;
}
a{text-decoration:none;}
.small-caps{letter-spacing:.04em;}

/* ---------- Top bar ---------- */
.topbar{
  background:var(--ink);
  color:#c7cad3;
  font-size:12.5px;
}
.topbar a{color:#c7cad3;}
.topbar a:hover{color:#fff;}

/* ---------- Header ---------- */
.site-header{
  padding:16px 0;
  border-bottom:1px solid var(--line);
}
.brand-logo{
  font-weight:800;
  font-size:1.7rem;
  letter-spacing:-0.5px;
  color:var(--ink);
}

.brand-logo img{
  height: auto;
  width: 70%;
}

.brand-logo span{color:var(--brand-orange);}
.header-search{
  max-width:520px;
}
.header-search .form-control{
  border-radius:6px 0 0 6px;
  border:1.5px solid var(--line);
}
.header-search .btn{
  border-radius:0 6px 6px 0;
  background: #fe4d00;
  border-color: #fe4d00;
  color:#fff;
}
.header-action-btn{
  border:1.5px solid var(--line);
  border-radius:6px;
  padding:7px 14px;
  font-size:12.5px;
  font-weight:600;
  color:var(--ink);
  display:inline-flex;
  align-items:center;
  gap:6px;
  white-space:nowrap;
  background:#fff;
}
.header-action-btn.filled{
  background: #fe4d00;
  border-color: #fe4d00;
  color:#fff;
}
.header-action-btn.dark{
  background:var(--ink);
  border-color:var(--ink);
  color:#fff;
}
.header-action-btn:hover{filter:brightness(0.95); color:inherit;}
.cart-icon-wrap{
  position:relative;
  width:40px;height:40px;
  border:1.5px solid var(--line);
  border-radius:6px;
  display:flex;align-items:center;justify-content:center;
}
.cart-icon-wrap .badge{
  position:absolute;
  top:-6px;right:-6px;
  background: #fe4d00;
  font-size:10px;
}

/* ---------- Main nav ---------- */
/*.main-nav{*/
/*  background:var(--ink);*/
/*  padding: 1px;*/
/*}*/
/*.main-nav .nav-link{*/
/*  color:#dfe1e6;*/
/*  font-weight:600;*/
/*  font-size:13px;*/
/*  padding:12px 14px !important;*/
/*  white-space:nowrap;*/
/*}*/
/*.main-nav .nav-link:hover, .main-nav .nav-link:focus{*/
/*  color:var(--brand-orange);*/
/*}*/
/*.main-nav .navbar-toggler{*/
/*  border-color:rgba(255,255,255,.3);*/
/*}*/


/* ===== Main nav ===== */
.main-nav{background:#111;position:relative;z-index:100;}
.main-nav .nav-item{position:relative;}
.main-nav .nav-link{color:#e5e7eb;font-size:.85rem;font-weight:500;padding:12px 14px;display:flex;align-items:center;gap:6px;white-space:nowrap;cursor:pointer;}
.main-nav .nav-link:hover{color: #fe4d00;}
.main-nav .nav-link .caret{font-size:.6rem;color:#9ca3af;}
.nav-item.has-dropdown:hover .caret{color:var(--orange);}

/* Level 1: sub-category panel opens to the RIGHT of the top nav item */
.dropdown-menu-custom{
  position:absolute;
  top: 100%;
  left: 15%;
  min-width:220px;
  background:#fff;
  box-shadow:0 10px 22px rgba(0,0,0,.16);border-left:2px solid var(--orange);
  padding:0 0;
  display:none;
  z-index:200;
  list-style:none;
  margin:0;
}
.nav-item.has-dropdown:hover > .dropdown-menu-custom{display:block;}
.dropdown-menu-custom > li{position:relative;}
.dropdown-menu-custom > li > a{
  display:flex;align-items:center;justify-content:space-between;gap:14px;
  padding:7px 16px;font-size:.82rem;color:#374151;font-weight:500;
}
.dropdown-menu-custom > li > a i{font-size:.65rem;color:#9ca3af;}
.dropdown-menu-custom > li:hover > a{background:#fe4d00;color: #fff;}
.dropdown-menu-custom > li:hover > a i{color: #fff;}

/* Level 2: child-category panel opens further to the RIGHT of the sub-category item */
.submenu-flyout{
  position:absolute;
  top:0;
  left:100%;
  min-width:200px;
  background:#fff;
  box-shadow:0 10px 22px rgba(0,0,0,.16);
  border-left:2px solid var(--orange);
  padding:0 0;
  display:none;
  z-index:210;
  list-style:none;margin:0;
}
.dropdown-menu-custom > li:hover > .submenu-flyout{display:block;}
.submenu-flyout > li > a{display:block;padding:7px 16px;font-size:.8rem;color:#4b5563;white-space:nowrap;}
.submenu-flyout > li:hover > a{background:#fe4d00;color: #fff;}
.dropdown-menu-custom.flip-left,
.submenu-flyout.flip-left{left:auto;right:100%;border-left:none;border-right:2px solid var(--orange);}

/* ===== Mobile menu toggle button ===== */
.menu-toggle-btn{
  /*background:#111;*/
  color:#000;
  border:1px solid #000;
  width:40px;
  height:40px;
  border-radius:4px;
  display:none;
  align-items:center;
  justify-content:center;
  font-size:1.1rem;
  flex-shrink:0;
}
.menu-toggle-btn:hover{background:var(--orange);}

/* ===== Mobile off-canvas menu ===== */
.mobile-menu-backdrop{
  position:fixed;inset:0;background:rgba(0,0,0,.5);z-index:1040;
  opacity:0;visibility:hidden;transition:opacity .3s ease;
}
.mobile-menu-backdrop.show{opacity:1;visibility:visible;}

.mobile-menu-panel{
  position:fixed;top:0;left:0;bottom:0;width:280px;max-width:82%;
  background:#111;z-index:1050;transform:translateX(-100%);
  transition:transform .3s ease;display:flex;flex-direction:column;
  box-shadow:2px 0 18px rgba(0,0,0,.3);
}
.mobile-menu-panel.show{transform:translateX(0);}

.mobile-menu-header{
  display:flex;align-items:center;justify-content:space-between;
  padding:16px 18px;border-bottom:1px solid #262626;flex-shrink:0;
}
.mobile-menu-header .brand-logo{color:#fff;font-size:1.3rem;}
.mobile-menu-close{background:none;border:none;color:#fff;font-size:1.3rem;line-height:1;}
.mobile-menu-close:hover{color:var(--orange);}

.mobile-menu-search{padding:14px 18px;border-bottom:1px solid #262626;flex-shrink:0;}
.mobile-menu-search .input-group input{border:none;font-size:.85rem;}

.mobile-menu-links{flex:1;overflow-y:auto;padding:8px 0;}

/* Level 1 - main category */
.mm-l1{border-bottom:1px solid #1e1e1e;}
.mm-l1-head{
  display:flex;align-items:center;justify-content:space-between;gap:10px;
  color:#e5e7eb;font-size:.9rem;font-weight:600;padding:13px 18px;cursor:pointer;
}
.mm-l1-head:hover{background:#1a1a1a;color:var(--orange);}
.mm-l1-head .mm-left{display:flex;align-items:center;gap:12px;}
.mm-l1-head i.mm-icon{width:18px;color:var(--orange);font-size:.9rem;}
.mm-l1-head i.mm-caret{font-size:.7rem;color:#9ca3af;transition:.25s;}
.mm-l1-head.open i.mm-caret{transform:rotate(180deg);color:var(--orange);}
.mm-l1-body{display:none;background:#0a0a0a;}

/* Level 2 - subcategory */
.mm-l2-head{
  display:flex;align-items:center;justify-content:space-between;
  color:#c7cbd1;font-size:.84rem;font-weight:500;padding:11px 18px 11px 40px;cursor:pointer;
  border-top:1px solid #1c1c1c;
}
.mm-l2-head:hover{color:var(--orange);}
.mm-l2-head i.mm-caret2{font-size:.65rem;color:#7b8290;transition:.25s;}
.mm-l2-head.open i.mm-caret2{transform:rotate(180deg);color:var(--orange);}
.mm-l2-body{display:none;background:#050505;}

/* Level 3 - child category */
.mm-l3-link{
  display:block;color:#9aa0aa;font-size:.8rem;padding:9px 18px 9px 58px;border-top:1px solid #161616;
}
.mm-l3-link:hover{color:var(--orange);background:#111;}
.mm-l2-nolink{padding:10px 18px 10px 40px;font-size:.8rem;color:#6b7280;font-style:italic;}

.mobile-menu-footer{padding:14px 18px;border-top:1px solid #262626;flex-shrink:0;display:flex;gap:10px;}
.mobile-menu-footer button{flex:1;font-size:.8rem;font-weight:600;padding:9px 6px;border:none;border-radius:4px;}

body.menu-open{overflow:hidden;}

@media(max-width:991.98px){
  .menu-toggle-btn{display:inline-flex;}
  .main-nav{display:none;}
}

/* ---------- Breadcrumb ---------- */
.breadcrumb-bar{
  background:var(--bg-soft);
  font-size:12.5px;
  padding:10px 0;
}
.breadcrumb-bar a{color:var(--ink-soft);}
.breadcrumb-bar a:hover{color:var(--brand-orange);}

/* ---------- Product top section ---------- */
.product-shell{
  border:1px solid var(--line);
  border-radius:10px;
  padding:24px;
}
.discount-pill{
  background:var(--brand-orange);
  color:#fff;
  font-weight:700;
  font-size:12px;
  padding:3px 10px;
  border-radius:4px;
  display:inline-block;
  margin-bottom:8px;
}
.gallery-main{
  border:1px solid var(--line);
  border-radius:10px;
  padding:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:320px;
  background:#fff;
}
.gallery-main img{
  max-width:100%;
  max-height:300px;
  object-fit:contain;
}
.thumb-row{
  gap:10px;
  margin-top:14px;
}
.thumb{
  width:64px;height:64px;
  border:2px solid var(--line);
  border-radius:8px;
  padding:6px;
  cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  background:#fff;
  transition:.15s;
}
.thumb img{max-width:100%;max-height:100%;object-fit:contain;}
.thumb.active, .thumb:hover{
  border-color:var(--brand-orange);
}
.product-title{
  font-size:1.35rem;
  font-weight:700;
  line-height:1.35;
  margin-bottom:14px;
}
.product-title a {
    color: #000;
}
.meta-row{
  font-size:13.5px;
  margin-bottom:6px;
  color:var(--ink-soft);
}
.meta-row strong{color:var(--ink);font-weight:600;}
.status-instock{color:var(--price-green);font-weight:700;}
.brand-link{color:var(--brand-orange);font-weight:700;}
.key-features-title{
  font-weight:700;
  margin-top:14px;
  margin-bottom:6px;
  font-size:13.5px;
}
.key-features-list{
  font-size:13px;
  color:var(--ink-soft);
  padding-left:18px;
  margin-bottom:6px;
}
.view-more-link{
  font-size:12.5px;
  font-weight:600;
  color:#2378c9;
}
.price-block{
  margin:16px 0;
  display:flex;
  align-items:baseline;
  gap:12px;
  flex-wrap:wrap;
}
.price-now{
  font-size:1.9rem;
  font-weight:800;
  color:var(--brand-orange);
}
.price-old{
  font-size:1.05rem;
  color:#9aa0ab;
  text-decoration:line-through;
}
.qty-input-group{
  width:110px;
}
.qty-input-group .form-control{
  text-align:center;
  border-color:var(--line);
}
.btn-add-cart{
  background:var(--brand-orange);
  border-color:var(--brand-orange);
  color:#fff;
  font-weight:700;
  padding:10px 22px;
}
.btn-add-cart:hover{background:var(--brand-orange-dark);color:#fff;}
.btn-buy-now{
  background:var(--ink);
  border-color:var(--ink);
  color:#fff;
  font-weight:700;
  padding:10px 22px;
}
.btn-buy-now:hover{background:#000;color:#fff;}
.query-note{
  background:#fff6da;
  border:1px solid #f3e2a0;
  color:#8a6d00;
  font-weight:700;
  font-size:13px;
  padding:10px 14px;
  border-radius:8px;
  margin-top:18px;
  display:inline-block;
}

/* ---------- Tabs ---------- */
.product-tabs .nav-link{
  border:none;
  border-radius:6px 6px 0 0;
  font-weight:700;
  color:var(--ink-soft);
  padding:12px 22px;
  background:var(--bg-soft);
  margin-right:4px;
}
.product-tabs .nav-link.active{
  background:var(--brand-orange);
  color:#fff;
}

/* ---------- Specification table ---------- */
.spec-section-title{
  background:#fdeeee;
  color:var(--brand-orange);
  font-weight:700;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.03em;
  padding:8px 14px;
  border-radius:4px;
  margin-top:18px;
}
.spec-table{
  width:100%;
  font-size:13.5px;
}
.spec-table tr{
  border-bottom:1px solid var(--line);
}
.spec-table td{
  padding:10px 14px;
  vertical-align:top;
}
.spec-table td:first-child{
  width:32%;
  font-weight:600;
  color:var(--ink-soft);
  background:#fafbfc;
}

/* ---------- Sidebar widgets ---------- */
.side-widget{
  border:1px solid var(--line);
  border-radius:10px;
  padding:16px;
  margin-bottom:20px;
}
.side-widget-title{
  font-weight:700;
  font-size:14px;
  margin-bottom:14px;
  padding-bottom:10px;
  border-bottom:2px solid var(--brand-orange);
}
.side-product{
  display:flex;
  gap:10px;
  margin-bottom:14px;
}
.side-product img{
  width:56px;height:56px;
  object-fit:contain;
  border:1px solid var(--line);
  border-radius:6px;
  padding:4px;
  flex-shrink:0;
}
.side-product-name{
  font-size:12.5px;
  font-weight:600;
  line-height:1.3;
  margin-bottom:4px;
  display:block;
  color:var(--ink);
}
.side-product-name:hover{color:var(--brand-orange);}
.side-price-now{
  color:var(--brand-orange);
  font-weight:700;
  font-size:12.5px;
}
.side-price-old{
  color:#9aa0ab;
  text-decoration:line-through;
  font-size:11.5px;
  margin-left:6px;
}

/* ---------- Description ---------- */
.desc-heading{
  font-weight:700;
  font-size:1.15rem;
  margin-top:26px;
  margin-bottom:10px;
}
.desc-body p{color:var(--ink-soft);line-height:1.7;}
.desc-body ul{color:var(--ink-soft);line-height:1.8;}
.video-thumb-wrap{
  position:relative;
  max-width:420px;
  border-radius:10px;
  overflow:hidden;
  cursor:pointer;
  margin:16px 0;
}
.video-thumb-wrap img{width:100%;display:block;}
.play-btn{
  position:absolute;
  top:50%;left:50%;
  transform:translate(-50%,-50%);
  width:56px;height:56px;
  background:rgba(237,28,36,.9);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  color:#fff;
  font-size:1.4rem;
}
.faq-item{
  margin-bottom:14px;
}
.faq-q{
  font-weight:700;
  margin-bottom:4px;
}
.faq-a{color:var(--ink-soft);}

/* ---------- Quick compare ---------- */
.compare-table{
  width:100%;
  min-width:640px;
}
.compare-table th, .compare-table td{
  border:1px solid var(--line);
  padding:12px;
  text-align:center;
  vertical-align:middle;
  font-size:13px;
}
.compare-table th{
  background:var(--bg-soft);
  font-weight:700;
}
.compare-table img{
  width:64px;height:64px;
  object-fit:contain;
}
.compare-table .btn{
  background:var(--brand-orange);
  color:#fff;
  border:none;
  font-size:12px;
  font-weight:700;
  padding:6px 14px;
}

/* ---------- Review section ---------- */
.review-form label{
  font-weight:600;
  font-size:13.5px;
  margin-bottom:6px;
}
.star-rating i{
  color:#d8dbe0;
  font-size:1.2rem;
  cursor:pointer;
  margin-right:4px;
}
.star-rating i.active{color:#f5b301;}

/* ---------- Footer ---------- */
.site-footer{
  background:var(--ink);
  color:#c7cad3;
  padding:44px 0 20px;
  font-size:13.5px;
  margin-top:50px;
}
.site-footer h6{
  color:#fff;
  font-weight:700;
  margin-bottom:16px;
}
.site-footer a{color:#c7cad3;}
.site-footer a:hover{color:var(--brand-orange);}
.site-footer ul{list-style:none;padding:0;}
.site-footer li{margin-bottom:8px;}
.footer-social a{
  width:34px;height:34px;
  border:1px solid #3a3f4b;
  border-radius:50%;
  display:inline-flex;
  align-items:center;justify-content:center;
  margin-right:8px;
}
.footer-bottom{
  border-top:1px solid #2e323c;
  margin-top:30px;
  padding-top:16px;
  font-size:12.5px;
  color:#8a8f9c;
}
.faq-summary{
  border:1px solid var(--line);
  border-radius:10px;
  padding:20px;
  margin-top:30px;
  background:var(--bg-soft);
}

/* ---------- Mobile header row (hamburger | centered logo | account+cart) ---------- */
.mobile-header-row{
  min-height:48px;
}
.mobile-hamburger-btn{
  border:1.5px solid var(--line);
  border-radius:8px;
  padding:8px 10px;
  background:#fff;
  flex-shrink:0;
}
.mobile-hamburger-btn:focus{box-shadow:none;}
.mobile-hamburger-btn .navbar-toggler-icon{
  width:1.1em;
  height:1.1em;
}
.mobile-center-logo{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  font-size:1.4rem;
}
.mobile-header-row{
  position:relative;
}

/* ---------- Mobile off-canvas nav ---------- */
.mobile-nav-offcanvas{
  width:280px;
  background:var(--ink);
  color:#dfe1e6;
}
.mobile-nav-offcanvas .offcanvas-header{
  border-bottom:1px solid rgba(255,255,255,.12);
  padding:16px 18px;
}
.mobile-nav-offcanvas .offcanvas-header .brand-logo{color:#fff;}
.mobile-nav-list li a{
  display:flex;
  align-items:center;
  padding:13px 20px;
  color:#dfe1e6;
  font-weight:600;
  font-size:13.5px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.mobile-nav-list li a:hover, .mobile-nav-list li a:active{
  background:rgba(237,28,36,.12);
  color:var(--brand-orange);
}
.mobile-nav-list li a i{
  font-size:1rem;
  width:20px;
  color:var(--brand-orange);
}
.mobile-nav-footer{
  padding:16px 20px;
  border-top:1px solid rgba(255,255,255,.12);
  margin-top:6px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.mobile-nav-footer a{
  color:#dfe1e6;
  font-weight:600;
  font-size:13.5px;
}
.mobile-nav-footer a:hover{color:var(--brand-orange);}
.navbar-toggler{
  display:flex;
  align-items:center;
  padding:6px 10px;
}
.navbar-toggler:focus{box-shadow:none;}

@media (max-width:767px){
  .price-now{font-size:1.5rem;}
  .product-shell{padding:14px;}
  .brand-logo{font-size:1.35rem;}
  .header-action-btn span.btn-label{display:none;}
}





/* ===== Home Page CSS ===== */



/* ===== Hero ===== */
.hero-section{padding:20px 0;}
.hero-main{
  border-radius:3px;overflow:hidden;position:relative;height:450px;
}
.hero-main .carousel-inner, .hero-main .carousel-item{height:100%;}
.hero-slide-img{object-fit:fill;height:400px;}
.hero-main .carousel-indicators button{width:8px;height:8px;border-radius:50%;background:#fff;opacity:.6;}
.hero-main .carousel-indicators button.active{opacity:1;background:var(--orange);}
.hero-main .carousel-control-prev, .hero-main .carousel-control-next{width:6%;}

.hero-side-card{
  display:block;border-radius:3px;overflow:hidden;height:217px;
}
.hero-side-card img{width:100%;height:100%;object-fit:fill;transition:.3s;}
.hero-side-card:hover img{transform:scale(1.06);}

.care-strip{border:1px solid var(--border-gray);border-radius:4px;padding:8px 16px;margin-top:16px;font-size:.85rem;color:#374151;text-align:right;}

/* ===== Section headers ===== */
.section-title{text-align:center;font-weight:700;font-size:1.3rem;margin:38px 0 22px;position:relative;}
.section-title-bar{
    background: #f3f4f6;
    border-radius:30px;
    padding:12px;
    font-weight:700;
    font-size:1.15rem;
    margin:38px 0 22px;
    text-align:center;
}

/* ===== Category icons ===== */
.category-row {
    gap: 15px;
}

.category-card{
    border:1px solid #e5e7eb;
    border-radius:6px;
    padding:18px 8px;
    text-align:center;
    height:100%;
    transition:.2s;
    cursor:pointer;
    width: 11%;;
}

.category-card img{
    height: 50px;
    width: 50px;
    display: block;
    margin: 0 auto;
}

.category-card:hover{border-color: #f4700e;box-shadow:0 4px 14px rgba(244,112,14,.15);transform:translateY(-2px);}
.category-card i{font-size:1.7rem;color: #e5e7eb;margin-bottom:10px;display:block;}
.category-card span{font-size:.8rem;color:#374151;font-weight:500;}

/* ===== Product cards ===== */
.product-card{border:1px solid #e5e7eb;border-radius:6px;padding:14px;height:100%;position:relative;transition:.2s;background:#fff;}
.product-card:hover{box-shadow:0 6px 18px rgba(0,0,0,.08);border-color:#d1d5db;}
.discount-badge{position:absolute;top:10px;right:10px;background: #f4700e;color:#fff;font-size:.7rem;font-weight:700;padding:3px 8px;border-radius:3px;z-index:2;}
.product-img{
    
    margin-bottom: 10px;
    border-radius: 4px;
    background: #fafafa;
    
    /*height:130px;*/
    /*display:flex;*/
    /*align-items:center;*/
    /*justify-content:center;*/
    /*margin-bottom:10px;*/
    /*border-radius:4px;*/
    /*overflow:hidden;*/
    /*background:#fafafa;*/
}
.product-img img{
    /*max-height:100%;*/
    /*max-width:100%;*/
    /*object-fit:contain;*/
    
    height: 100%;
    width: 100%;
}
.product-title{font-size:.82rem;color:#1f2933;font-weight:500;min-height:38px;margin-bottom:6px;line-height:1.3;}
.price-now{font-weight:700;font-size:.95rem;color:#111;}
.price-old{font-size:.78rem;color:#9ca3af;text-decoration:line-through;margin-left:6px;}
.product-actions{display:flex;gap:6px;margin-top:10px;}
.btn-add-cart{background:#fceee1;color:var(--orange);font-weight:600;font-size:.75rem;border:none;flex:1;padding:8px 4px;border-radius:3px;}
.btn-add-cart:hover{background:var(--orange);color:#fff;}
.btn-buy-now{background:#111;color:#fff;font-weight:600;font-size:.75rem;border:none;flex:1;padding:8px 4px;border-radius:3px;}
.btn-buy-now:hover{background:var(--orange);}

/* ===== Flash sale tabs ===== */
.flash-tabs .nav-link{color:#6b7280;font-weight:700;font-size:.95rem;border:none;border-bottom:3px solid transparent;padding:6px 4px;margin-right:22px;background:none;}
.flash-tabs .nav-link.active{color:var(--orange);border-bottom-color:var(--orange);}

/* ===== About us accordion ===== */
.about-toggle{border-top:1px solid var(--border-gray);padding:16px 0;font-weight:600;cursor:pointer;display:flex;justify-content:space-between;align-items:center;}
.about-toggle i{transition:.2s;}
.about-toggle.open i{transform:rotate(180deg);}
.about-body{display:none;font-size:.85rem;color:#4b5563;padding-bottom:16px;line-height:1.6;}


