/* Consistent sizing for primary commerce actions */
.btn#btnAddToCart,
.btn#btnBuyNow,
.btn[data-add-to-cart],
.btn[data-buy-now]{
  min-width: 160px;
  padding: 10px 18px;
  font-weight: 600;
}

/* Keep buttons visually aligned when side-by-side */
.btn[data-add-to-cart] + .btn[data-buy-now],
#btnAddToCart + #btnBuyNow{
  margin-left: 8px;
}
/* === Highlight Add to Cart buttons site-wide === */
button.add_to_cart,
.add_to_cart,
[data-add-to-cart] {
  background-color: #28a745 !important; /* accessible green */
  color: #fff !important;
  border: 0 !important;
  font-weight: 700;
  letter-spacing: .3px;
  /* Match Bootstrap .btn size (same as Buy Now on ProductDetails) */
  padding: 6px 12px !important;
  font-size: 14px !important;
  line-height: 1.42857143 !important;
  border-radius: 4px !important;
  display: inline-block;
  vertical-align: middle;
  box-shadow: 0 6px 14px rgba(40,167,69,.25);
  transition: transform .08s ease, box-shadow .2s ease, background-color .2s ease;
}

/* Desktop: start scrolling items once ~4 rows, don't grow cart taller */
@media (min-width: 992px) {
  .mini-cart { max-height: 66vh; }
  .mini-cart-items { max-height: 240px; }
}

button.add_to_cart:hover,
.add_to_cart:hover,
[data-add-to-cart]:hover {
  background-color: #218838 !important; /* darker on hover */
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(40,167,69,.32);
}

button.add_to_cart:active,
.add_to_cart:active,
[data-add-to-cart]:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(40,167,69,.2);
}

button.add_to_cart:focus-visible,
.add_to_cart:focus-visible,
[data-add-to-cart]:focus-visible {
  outline: 3px solid rgba(72,180,97,.5);
  outline-offset: 2px;
}

/* Make sure within explore cards it remains prominent over theme styles */
.single-explore-item .add_to_cart,
.single-explore-item [data-add-to-cart] {
  text-transform: none;
}

/* === Cart icon bounce when items exist === */
@keyframes cart-bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-4px); }
  60% { transform: translateY(-2px); }
}

#CartIconHeader.cart-bouncing {
  animation: cart-bounce 1.4s ease-in-out infinite;
  transform-origin: center;
}

/* Apply same bounce to mobile bottom nav cart icon */
.mobile-bottom-nav .fa-shopping-cart.cart-bouncing {
  animation: cart-bounce 1.4s ease-in-out infinite;
  transform-origin: center;
}

/* Site-wide: hide mobile bottom nav on desktop */
@media (min-width: 768px) {
  .mobile-bottom-nav { display: none !important; }
}

/* Make list-topics cards fully clickable links */
.single-list-topics-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

/* Mini Cart popup styling */
.mini-cart {
  position: fixed;
  right: 12px;
  bottom: 64px; /* above mobile bottom nav */
  width: 92%;
  max-width: 380px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
  transform: translateY(16px) scale(0.98);
  opacity: 0;
  pointer-events: none;
  transition: transform .22s ease, opacity .22s ease;
  z-index: 10000;
  /* Auto height behavior */
  display: flex;
  flex-direction: column;
  max-height: 80vh;
}
.mini-cart.show {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}
.mini-cart-header {
  padding: 12px 14px;
  border-bottom: 1px solid #eee;
  font-weight: 700;
}
.mini-cart-items { flex: 1 1 auto; overflow: auto; }
.mini-cart-item { display: grid; grid-template-columns: 48px 1fr auto; gap: 10px; align-items: center; padding: 10px 14px; border-bottom: 1px dashed #efefef; }
.mini-cart-item img { width: 48px; height: 48px; object-fit: cover; border-radius: 6px; }
.mini-cart-item .title { font-size: 13px; line-height: 1.2; }
.mini-cart-item .title .qty { margin-left: 6px; color: #666; font-weight: 600; }
.mini-cart-item .title .unit { color: #999; font-size: 11px; }
.mini-cart-item .price { font-weight: 700; font-size: 13px; }
.mini-cart-actions { display: flex; gap: 6px; }
.mini-cart-btn { height: 26px; min-width: 26px; border: 1px solid #e4e4e4; background: #fafafa; border-radius: 6px; cursor: pointer; }
.mini-cart-empty { padding: 16px; color: #666; text-align: center; }
.mini-cart-footer { padding: 12px 14px; display: grid; gap: 10px; }
.mini-cart-row { display: flex; justify-content: space-between; align-items: center; }
.mini-cart-checkout { display: inline-block; text-align: center; background: #111; color: #fff; padding: 10px 14px; border-radius: 8px; text-decoration: none; }

/* Position tweaks for desktop (no bottom nav) */
@media (min-width: 768px){
  .mini-cart { bottom: 20px; right: 20px; }
}

.single-list-topics-link:hover,
.single-list-topics-link:focus {
  text-decoration: none;
  color: inherit;
}

/* === Mini Cart Popup === */
.mini-cart {
  position: fixed;
  top: 70px; /* under header */
  right: 20px;
  width: 420px; /* default ideal width */
  max-width: calc(100vw - 20px); /* auto-adjust to viewport */
  max-height: 67vh;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(0,0,0,.18);
  z-index: 99999;
  display: none;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.mini-cart.show { display: flex; }
.mini-cart-header {
  padding: 10px 12px;
  border-bottom: 1px solid #eee;
  font-weight: 700;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mini-cart-title { font-weight: 700; }
.mini-cart-close {
  background: transparent;
  border: 0;
  width: 28px;
  height: 28px;
  line-height: 1;
  font-size: 20px;
  border-radius: 50%;
  color: #555;
  cursor: pointer;
}
.mini-cart-close:hover { background: #f2f2f2; color: #000; }
@media (max-width: 576px) {
  .mini-cart-close { width: 26px; height: 26px; font-size: 18px; }
}
.mini-cart-items {
  overflow: auto;
  flex: 1 1 auto;
}
.mini-cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid #f3f3f3;
}
.mini-cart-item img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #eee;
}
.mini-cart-item .title {
  flex: 1;
  font-size: 13px;
  color: #222;
}
.mini-cart-item .title .unit { font-size: 11px; color: #777; margin-top: 2px; }
.mini-cart-item .price {
  white-space: nowrap;
  font-weight: 600;
  color: #111;
}
.mini-cart-item .qty {
  font-size: 12px;
  color: #555;
  background: #f2f2f2;
  border-radius: 10px;
  padding: 2px 8px;
  margin-left: 6px;
}
.mini-cart-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 6px;
}
.mini-cart-btn {
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 4px;
  padding: 2px 6px;
  line-height: 1;
  cursor: pointer;
}
.mini-cart-btn:hover { background: #f7f7f7; }
.mini-cart-empty { padding: 14px 12px; color: #666; font-size: 13px; }
.mini-cart-footer {
  padding: 12px 12px 8px;
  border-top: 1px solid #eee;
  background: #fafafa;
  flex: 0 0 auto;
}
.mini-cart-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}
.mini-cart-total { font-weight: 700; margin-bottom: 0; }
.mini-cart-checkout {
  width: 100%;
  display: block;
  box-sizing: border-box;
  max-width: 100%;
  text-align: center;
  background: #111;
  color: #fff !important;
  padding: 8px 12px;
  border-radius: 6px;
  margin: 0;
}
.mini-cart-checkout:hover { background: #000; color: #fff !important; }

/* === Mini Cart: Recommendations === */
.mini-cart-recs { margin-top: 6px; }
.mini-cart-recs-title { font-weight: 700; font-size: 13px; margin: 8px 2px; color: #222; }
.mini-cart-recs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 per row */
  gap: 10px;
}
.mini-rec {
  display: grid;
  grid-template-columns: 48px 1fr;
  grid-template-rows: auto auto auto;
  grid-template-areas:
    'thumb title'
    'thumb price'
    'thumb action';
  gap: 4px 8px;
  padding: 8px;
  border: 1px solid #eee;
  border-radius: 8px;
  background: #fff;
}
.mini-rec-thumb { grid-area: thumb; }
.mini-rec-thumb img { width: 48px; height: 48px; object-fit: cover; border-radius: 6px; border: 1px solid #f0f0f0; }
.mini-rec-title { grid-area: title; font-size: 12px; line-height: 1.2; color: #222; max-height: 30px; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; }
.mini-rec-price { grid-area: price; font-size: 12px; color: #111; font-weight: 600; }
.mini-rec-view {
  grid-area: action;
  justify-self: start;
  display: inline-block;
  padding: 4px 8px;
  font-size: 12px;
  line-height: 1.2;
  border: 1px solid #ff545a;
  color: #ff545a;
  border-radius: 4px;
  text-decoration: none;
  background: #fff;
}
.mini-rec-view:hover { background: #ff545a; color: #fff; border-color: #ff545a; }

@media (max-width: 576px) {
  .mini-cart-recs-grid { gap: 8px; }
  .mini-rec { padding: 6px; grid-template-columns: 44px 1fr; }
  .mini-rec-thumb img { width: 44px; height: 44px; }
  .mini-rec-title { font-size: 11.5px; }
  .mini-rec-view { padding: 3px 7px; font-size: 11.5px; }
}

/* Final visibility override to avoid conflicting earlier rules */
.mini-cart { display: none; }
.mini-cart.show { display: flex; opacity: 1; pointer-events: auto; transform: none; }

/* ===== Responsive adjustments ===== */
/* Remove Explore Map section globally */
.explore-map-icon { display: none !important; }

/* Explore cards: keep rows aligned and buttons anchored */
.single-explore-item { display: flex; flex-direction: column; height: 100%; }
.single-explore-item .single-explore-img { flex: 0 0 auto; }
.single-explore-txt { flex: 1 1 auto; }
.explore-open-close-part { flex: 0 0 auto; margin-top: auto; }

/* Enforce product image box of 358x262 (responsive) */
.single-explore-item .single-explore-img{
  width: 100%;
  max-width: 358px;           /* do not exceed target width */
  aspect-ratio: 358 / 262;    /* maintain 358x262 ratio */
  overflow: hidden;           /* crop overflow */
  margin: 0 auto;             /* center inside card */
}
.single-explore-item .single-explore-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;          /* auto crop to fill box */
  display: block;
}

/* Action row alignment */
.explore-open-close-part .row { display: flex; flex-wrap: nowrap; align-items: center; width: 100%; }
.explore-open-close-part .col-sm-5,
.explore-open-close-part .col-sm-7 { display: flex; }
.explore-open-close-part .col-sm-5 { justify-content: flex-start; flex: 0 0 50%; max-width: 50%; }
.explore-open-close-part .col-sm-7 { justify-content: flex-end; flex: 0 0 50%; }

/* Button styles for Add to Cart and View Product */
.open-btn { box-sizing: border-box; padding: 10px 16px; border-radius: 6px; font-weight: 600; line-height: 1.2; display:inline-block; }
.open-btn.add_to_cart { background: #ff545a; color: #fff; border: 2px solid #ff545a; }
.open-btn.add_to_cart:hover { background: #e23d43; border-color: #e23d43; }
.open-btn.view-product-btn { background: #fff; color: #ff545a; border: 2px solid #ff545a; text-decoration:none; }
.open-btn.view-product-btn:hover { color: #fff; background: #ff545a; border-color: #ff545a; text-decoration:none; }

/* Ensure both buttons have identical footprint */
.explore-open-close-part .open-btn { min-width: 150px; min-height: 40px; text-align: center; border-width:2px; }
/* Stabilize button row height to avoid card reflow on hover */
.explore-open-close-part .row { min-height: 44px; }

/* Explicit padding for Add to Cart triggers */
button.add_to_cart,
.add_to_cart,
[data-add-to-cart] {
  padding: 10px 16px !important;
}

/* Tighten spacing between the two columns on small screens */
@media (max-width: 576px) {
  .explore-open-close-part .row { gap: 10px; }
}
@media (max-width: 768px) {
  /* Mini-cart fit on tablets/smaller */
  .mini-cart { width: 360px; right: 12px; top: 64px; }
  .mini-cart-item img { width: 44px; height: 44px; }
  .mini-cart-item .title { font-size: 12.5px; }
  .mini-cart-item .price { font-size: 13px; }
  .mini-cart-btn { padding: 2px 6px; }
}

@media (max-width: 576px) {
  /* Use viewport width on phones */
  .mini-cart { width: calc(100vw - 20px); right: 10px; left: 10px; top: 60px; box-sizing: border-box; max-height: 47vh; }
  .mini-cart-footer { padding: 10px; box-sizing: border-box; width: 100%; }
  .mini-cart-checkout { max-width: 100%; width: 100%; display: block; box-sizing: border-box; }
  /* Start scrolling after ~5 items on small screens */
  .mini-cart-items { max-height: 300px; overflow: auto; }
  .mini-cart-header { padding: 8px 10px; }
  .mini-cart-item { padding: 8px 10px; gap: 8px; }
  .mini-cart-item img { width: 40px; height: 40px; }
  .mini-cart-item .title { font-size: 12px; }
  .mini-cart-item .title .unit { font-size: 10px; }
  .mini-cart-item .qty { font-size: 11px; }
  .mini-cart-actions { gap: 4px; margin: 0 4px; }
  .mini-cart-btn { padding: 2px 5px; font-size: 12px; }
  .mini-cart .price { font-size: 12px; }
  .mini-cart-row { margin-bottom: 8px; }
  .mini-cart-total { margin-bottom: 6px; }
  .mini-cart-checkout { padding: 8px 10px; font-size: 14px; }

  /* Header social/cart icons smaller to avoid overlap on narrow widths */
  #TweetericonHeader, #YoutubeiconHeader, #InstagramIconHeader, #WhatsappIconHeader { font-size: 22px; top: 18% !important; }
}
/*==================================
* Author        : "ThemeSine"
* Template Name : Listrace  HTML Template
* Version       : 1.0
==================================== */

/*==================================
font-family: 'Roboto', sans-serif;
==================================== */


/*=========== TABLE OF CONTENTS ===========
1.  General css (Reset code)
2.  Header-top
3.  Top-area
4.  Welcome-hero
5.  List-topics
6.  Works  
7.  Explore
8.  Reviews
9.  Counter
10. Blog
11. Subscribe
12. Footer
==========================================*/

/*-------------------------------------
		1.General css (Reset code)
--------------------------------------*/

#TweetericonHeader {
    font-size: 35px;
    color: #55ACEE;
    position: absolute;
    right: 35%;
    top: 25%;
}
#YoutubeiconHeader {
    font-size: 35px;
    color: #bb0000;
    position: absolute;
    right: 30%;
    top: 25%;
}
#InstagramIconHeader {
    font-size: 35px;
    color: #125688;
    position: absolute;
    right: 25%;
    top: 25%;
}
#WhatsappIconHeader {
    font-size: 35px;
    color: green;
    position: absolute;
    right: 20%;
    top: 25%;
}
.FooterBrandLogo {
    position: absolute;
    width: 50%;
    bottom: -80px;
}

.upload-file-area {
    position: absolute;
    top: 27%;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    width: 200px;
    cursor: pointer;
    background: #ff545a;
    text-transform: capitalize;
    border-radius: 10px;
    -webkit-transition: 0.3s linear;
    -moz-transition: 0.3s linear;
    -ms-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    transition: 0.3s linear;
}

button.UploadBTN {
    position: absolute;
    top: 0%;
    right: 0%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #fff;
    width: 170px;
    height: 70px;
    background: #ff545a;
    text-transform: capitalize;
    margin-left: 30px;
    border-radius: 3px;
    -webkit-transition: 0.3s linear;
    -moz-transition: 0.3s linear;
    -ms-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    transition: 0.3s linear;
}

.Shopping-BTNL {
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 10PX;
    background-color: #ff545a;
    width: 180px;
    height: 60px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    overflow: hidden;
    cursor: pointer;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.Shopping-BTNR {
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 10PX;
    background-color: #ff545a;
    width: 180px;
    height: 60px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    overflow: hidden;
    cursor: pointer;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.Shopping-BTNL:hover {
    box-shadow: 6px 6px 20px 0px black;
}

.Shopping-BTNR:hover {
    box-shadow: 6px 6px 20px 0px black;
}

*{
    padding: 0;
    margin: 0;
}

*{
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-o-box-sizing:border-box;
	-ms-box-sizing:border-box;
	box-sizing:border-box;
}
body{
	font-family: 'Poppins', sans-serif;
	font-size:14px;
	color:#a09e9c;
    text-transform:initial;
    max-width:1920px;
    margin:0 auto;
	overflow-x:hidden;
}

.fa:hover {
    opacity: 0.7;
}

a,a:hover,a:active,a:focus {
	display:inline-block;
	text-decoration:none;
	color: #343a3f;
	font-size:16px;
	padding:0;
    font-weight: 500;
    text-transform: capitalize;
}
h1,h2,h3,h4,h5,h6 { 
	margin: 0;
	color:#343a3f;
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
}
p {
	margin: 0;
	color:#767f86;
	font-size:14px;
    line-height: 1.8;
    text-transform: initial;
}
img{border:none;max-width:100%; height:auto;}
ul{
	padding: 0;
    margin: 0 auto;
    list-style: none;
}
ul li {
	list-style: none;
	
}
select,input,textarea,button{box-shadow:none;outline:0!important;}
button {background: transparent;border: 0;font-size: 12px;}

html,body{height: 100%;}

[placeholder]:focus::-webkit-input-placeholder {
  -webkit-transition: opacity 0.3s 0.3s ease; 
  -moz-transition: opacity 0.3s 0.3s ease; 
  -ms-transition: opacity 0.3s 0.3s ease; 
  -o-transition: opacity 0.3s 0.3s ease; 
  transition: opacity 0.3s 0.3s ease; 
  opacity: 0;
}

/* section-header */
.section-header{
    position: relative;
    text-align: center;
}
.section-header h2{
    color: #505866;
    font-size:24px;
    font-weight: 500;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1.3px;
}
.section-header h2 span{text-transform: lowercase;}
.section-header p{
    font-size:16px;
}
/* section-header */
.fix{position: relative;clear: both;}
/*=============Style css=========*/


/*-------------------------------------
        2. Header-top
--------------------------------------*/
.header-top{border-bottom:1px solid #f6f8fa;}

.header-top ul li {display: inline-block;}

.header-top-left li,.header-top-right li  {display: inline-block;}

/*.select-opt*/
.select-opt,.header-top-contact{
    padding: 10px 18px;
    border-right: 1px solid #f6f8fa;
}
.header-top-contact{
    border-right: 0;
    border-left: 1px solid #f6f8fa;
    font-size: 12px;
}
.select-opt select {
    border: none;
    cursor:pointer;
    color:#a7b0ba;
    font-size: 12px;
    font-weight: 300;
}
.select-opt option{
    color:#a7b0ba;
    text-transform: uppercase;
}
.select-opt a span.lnr-magnifier:before {
    font-size: 12px;
    color: #373939;
}
.select-opt a span.lnr-magnifier:before {
    font-size: 12px;
    color: #373939;
}
/*.select-opt*/

.header-top-right ul li a{
    color:#a7b0ba;
    font-size: 12px;
    font-weight: 300;
}


/*-------------------------------------
        3. Top-area
--------------------------------------*/
nav.navbar.bootsnav {
    background-color:#fff;
    border-bottom: transparent;
}
.wrap-sticky nav.navbar.bootsnav.sticked {
    background-color: #fff;
    box-shadow: 0 25px 20px rgba(0,0,0,.2);
}

/*.navbar-brand*/
.navbar-header a.navbar-brand,.navbar-header a.navbar-brand:hover,.navbar-header a.navbar-brand:focus {
    display: inline-block;
    color: #1b1e20;
    font-size: 20px;
    font-weight: 700;
    padding: 34px 0px;
    text-transform:capitalize;
}

    .navbar-header a.navbar-brand span {
        width: 15%;
        display: block;
        margin: -2% 0 0 0;
    }

.wrap-sticky nav.navbar.bootsnav.sticked .navbar-header a.navbar-brand,.wrap-sticky nav.navbar.bootsnav.sticked .navbar-header a.navbar-brand:hover,.wrap-sticky nav.navbar.bootsnav.sticked .navbar-header a.navbar-brand:focus {padding:30px 0px;}
/*.navbar-brand*/

/*.nav li*/
nav.navbar.bootsnav ul.nav > li > a {
    color: #859098;
    font-size: 14px;
    font-weight: 500;
    text-transform:uppercase;
    -webkit-transition: 0.3s linear; 
    -moz-transition: 0.3s linear; 
    -ms-transition: 0.3s linear; 
    -o-transition: 0.3s linear; 
    transition: 0.3s linear;
}
nav.navbar.bootsnav ul.nav > li > a {padding:34px 21px;}
nav.navbar.bootsnav ul.nav > li > a:hover,nav.navbar.bootsnav ul.nav > li > a:focus{color: #ff545a;}
nav.navbar.bootsnav ul.nav > li.active>a {color: #ff545a;}

nav.navbar.bootsnav ul.nav > li.dropdown > a.dropdown-toggle:after {
    content: "";
}
nav.navbar.bootsnav ul.nav > li.dropdown span {
    font-size: 8px;
    margin-left: 15px;
}
.wrap-sticky nav.navbar.bootsnav.sticked ul.nav > li > a{padding:34px 21px;}
/*.nav li*/

/*.menu-ui-design*/
.menu-ui-design{overflow-y:scroll;height: 350px;}
.menu-ui-design::-webkit-scrollbar {
    width:5px;
}
.menu-ui-design::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 8px #000;
}
.menu-ui-design::-webkit-scrollbar-thumb {
  background-color: #ff545a;
}
/*.menu-ui-design*/

/*.navbar-toggle */
nav.navbar.bootsnav .navbar-toggle {
    position: relative;
    background-color: transparent;
    border: 1px solid #ff545a;
    padding: 0px 10px 0px 10px;
    top: 0;
}
nav.navbar.bootsnav .navbar-toggle i{color: #ff545a; position:relative; bottom:5%}
/*.navbar-toggle */

/*-------------------------------------
        4.  Welcome-hero
--------------------------------------*/
.welcome-hero {
    position: relative;
    background:url(../images/welcome-hero/banner.jpg)no-repeat fixed;
    background-position:center;
    background-size:cover;
    text-align: center;
    height:900px;
    z-index: 1;
}
.welcome-hero:before{
    position: absolute;
    content: " ";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:rgba(65,73,89,.65);
    z-index: -1;
}
.welcome-hero-txt { padding-top: 1%;}

.welcome-hero-txt h2 {
    font-size: 48px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.4px;
    line-height: 1.4;
}
.welcome-hero-txt p {
    font-size: 18px;
    color: #fcfcfc;
    margin-top: 25px;
}

.welcome-hero-serch-box{margin-top: 2%;display: flex;}
.welcome-hero-form {
    display: flex;
    background: #fff;
    height: 70px;
    border-radius: 3px;
    width: 98%;
}
.welcome-hero-form-down {
    position: absolute;
    top: 540px;
    display: flex;
    background: #fff;
    height: 70px;
    width: 98%;
    border-radius: 3px;
}

.single-welcome-hero-form {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 50%;
    padding: 0 30px;
}
.single-welcome-hero-form:first-child{border-right: 1px solid #edeff1;}
.single-welcome-hero-form input {
    margin-left: 10px;
    width: 300px;
    border: 0;
    background: transparent;
}
.single-welcome-hero-form input[type="text"]{
    font-size: 14px;
    color: #859098;
    text-transform: capitalize;
    font-weight: 500;
}
.welcome-hero-form-icon {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #252d32;
}

.HeaderContact:hover {
    box-shadow: 0px 5px 17px 0px #070707;
    background: #f43032;
}

.HeaderContact {
    color:ghostwhite;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18PX;
    right: 3%;
    top: 20%;
    width: 170px;
    position: absolute;
    height: 50px;
    background: #ff545a;
    text-transform: capitalize;
    margin-left: 30px;
    border-radius: 15px;
    -webkit-transition: 0.3s linear;
    -moz-transition: 0.3s linear;
    -ms-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    transition: 0.3s linear;
}

.welcome-hero-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #fff;
    width: 170px;
    height: 70px;
    background: #ff545a;
    text-transform: capitalize;
    margin-left: 30px;
    border-radius: 3px;
    -webkit-transition: 0.3s linear;
    -moz-transition: 0.3s linear;
    -ms-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    transition: 0.3s linear;
}
.welcome-hero-btn:hover{/*background: #fd4043;*/background: #f43032;}

.welcome-hero-btn svg {
    width:  14px;
    height:  auto;
    margin-left:  12px;
}

/* Hero CTA: centered designer button */
.welcome-hero-cta {
    margin-top: 28px;
    display: flex;
    justify-content: center;
}
.welcome-hero-btn.cta-designer {
    width: auto;
    min-width: 240px;
    height: auto;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .3px;
    background: linear-gradient(135deg, #ff545a 0%, #ff6b70 100%);
    color: #fff;
    border-radius: 999px; /* pill */
    box-shadow: 0 8px 22px rgba(255,84,90,.35);
    border: 2px solid transparent;
    transition: transform .08s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}
.welcome-hero-btn.cta-designer:hover {
    background: linear-gradient(135deg, #e23d43 0%, #f0565c 100%);
    box-shadow: 0 10px 26px rgba(226,61,67,.42);
    transform: translateY(-1px);
}
.welcome-hero-btn.cta-designer:active {
    transform: translateY(0);
    box-shadow: 0 6px 16px rgba(226,61,67,.36);
}
.welcome-hero-btn.cta-designer:focus-visible {
    outline: none;
    border-color: #fff;
    box-shadow: 0 0 0 4px rgba(255,84,90,.35);
}

/* Icon spacing inside the CTA */
.welcome-hero-btn.cta-designer i {
    margin-right: 10px;
    font-size: 18px;
}

@media (max-width: 576px) {
    .welcome-hero-cta { margin-top: 20px; }
    .welcome-hero-btn.cta-designer { min-width: 200px; padding: 12px 20px; font-size: 15px; }
}

/* ===== Cart Icon Animations ===== */
.cart-hit {
    animation: cart-hit 420ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
@keyframes cart-hit {
    0% { transform: translateZ(0) scale(1); }
    30% { transform: translateY(-4px) scale(1.2); }
    60% { transform: translateY(0) scale(0.95); }
    100% { transform: translateZ(0) scale(1); }
}

.cart-bouncing {
    animation: cart-bounce 1200ms ease-in-out infinite;
}
@keyframes cart-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

/*-------------------------------------
        5. List-topuics
--------------------------------------*/
.list-topics-content {
    position: relative;
    top: -50px;
    z-index: 1;
}
.list-topics-content ul li { display: inline-block;}

.single-list-topics-content{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 205px;
    height: 170px;
    background:#fff;
    border-radius: 3px;
    margin-right: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0px 10px rgba(71,71,71,.2);
    -webkit-transition: .3s linear; 
    -moz-transition:.3s linear; 
    -ms-transition:.3s linear; 
    -o-transition:.3s linear;
    transition: .3s linear;
}
.single-list-topics-icon{ margin-bottom: 10px; }
.single-list-topics-content h2>a { margin: 13px 0;}
/*.single-list-topics-content:last-child{margin-right: 0;}*/

.single-list-topics-icon [class^="flaticon-"]:before,.single-list-topics-icon [class*=" flaticon-"]:before,.single-list-topics-icon [class^="flaticon-"]:after,.single-list-topics-icon [class*=" flaticon-"]:after {font-size: 45px;color:#343a3f;}
.single-list-topics-icon i {font-size: 45px; color:#343a3f;}
.single-list-topics-content:hover .single-list-topics-icon [class^="flaticon-"]:before,.single-list-topics-content:hover .single-list-topics-icon [class*=" flaticon-"]:before,.single-list-topics-content:hover .single-list-topics-icon [class^="flaticon-"]:after,.single-list-topics-content:hover .single-list-topics-icon [class*=" flaticon-"]:after {color:#fff;}
.single-list-topics-content:hover .single-list-topics-icon i {color:#fff;}

.single-list-topics-content:hover h2>a,.single-list-topics-content:hover p{color: #fff!important;}
.single-list-topics-content:hover{
    color: #fff;
    background:#ff545a;
    box-shadow: 0 5px 10px rgba(71,71,71,.4);
}

/*-------------------------------------
        6. Works 
--------------------------------------*/
.works{padding: 0 0 90px;}
.works-content {margin-top: 73px;}

.single-how-works{
    text-align: center;
    padding:50px 42px;
    border-radius: 3px;
    box-shadow: 0 0px 5px rgba(71,71,71,.2);
    margin-bottom: 30px;
    -webkit-transition: .3s linear; 
    -moz-transition:.3s linear; 
    -ms-transition:.3s linear; 
    -o-transition:.3s linear;
    transition: .3s linear;
}

.single-how-works-icon {
    display: inline-block;
    color: #50616c;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: #eef2f6;
    border-radius: 50%;
}
.single-how-works h2 a {
    font-size:  18px;
    margin: 35px 0 20px;
}
.single-how-works h2 a span {text-transform:  lowercase;}
.single-how-works p {margin-bottom: 25px;text-transform: initial;}

.single-how-works-icon [class^="flaticon-"]:before,.single-how-works-icon [class*=" flaticon-"]:before,.single-how-works-icon [class^="flaticon-"]:after,.single-how-works-icon [class*=" flaticon-"]:after {font-size: 35px;}
.single-how-works:hover .single-how-works-icon [class^="flaticon-"]:before,.single-how-works:hover .single-how-works-icon [class*=" flaticon-"]:before,.single-how-works:hover .single-how-works-icon [class^="flaticon-"]:after,.single-how-works:hover .single-how-works-icon [class*=" flaticon-"]:after {color:#ff545a;}

.welcome-hero-btn.how-work-btn {
    display: inline-block;
    margin: 0;
    width: 100px;
    height: 35px;
    font-size: 12px;
    background: transparent;
    color: #767f86;
    border: 1px solid #d3d6d9;
    border-radius: 3px;
}

.single-how-works:hover h2 a,.single-how-works:hover p{color: #fff;}
.single-how-works:hover .single-how-works-icon{background: #fff;}
.single-how-works:hover .welcome-hero-btn.how-work-btn{background: #fff;color: #ff545a;}
.single-how-works:hover{box-shadow: 0 0px 10px rgba(71,71,71,.4);background: #ff545a;}

/*-------------------------------------
        7. Explore
--------------------------------------*/
.explore{
    padding:117px 0 95px;
    background: #f8fafb;
}
.explore-content{margin-top: 78px;}

.single-explore-item {
    background: #fff;
    border: 1px solid #edeff1;
    border-radius: 3px;
    margin-bottom: 25px;
    -webkit-transition: .3s linear; 
    -moz-transition:.3s linear; 
    -ms-transition:.3s linear; 
    -o-transition:.3s linear;
    transition: .3s linear;
}
.single-explore-img{position:relative;overflow: hidden;}
.single-explore-img:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(162,172,177,.2);
}
.single-explore-img-info {
    position: absolute;
    bottom:-20px;
    left: 0;
    width: 100%;
    opacity:0;
    visibility:hidden;
    -webkit-transition: .3s linear;
    -moz-transition: .3s linear;
    -ms-transition: .3s linear;
    -o-transition: .3s linear;
    transition: .3s linear;
}
.single-explore-item:hover .single-explore-img-info{
    opacity:1;
    visibility:visible;
    bottom:0px
}
.single-explore-img-info button{
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: 83px;
    height: 21px;
    line-height: 21px;
    background: #ff545a;
    border-radius: 3px;
    color: #fcfcfc;
    text-transform: capitalize;
    text-align: center;
    font-size: 12px;
}
.single-explore-image-icon-box {
    text-align: right;
    position: absolute;
    bottom: 10px;
    right:  10px;
}
.single-explore-image-icon-box ul li {
    display:  inline-block;
    width: 30px;
    height:  28px;
    line-height:  28px;
    background: #252d32;
    text-align:  center;
    margin-left:  5px;
    color:  #cbcccd;
}
.single-explore-image-icon-box ul li:hover i{color: #267dff;}

.single-explore-txt {
    padding: 26px 25px 24px 15px;
}
.single-explore-txt.bg-theme-1 .explore-rating{background: #70a9ff;}
.single-explore-txt.bg-theme-2 .explore-rating{background: #00c61c;}
.single-explore-txt.bg-theme-3 .explore-rating{background: #ffcc5d;}
.single-explore-txt.bg-theme-4 .explore-rating{background: #bd70ff;}
.single-explore-txt.bg-theme-5 .explore-rating{background: #ff7a40;}

.explore-rating-price,.explore-rating-price a {
    font-size: 12px;
    color: #777f85;
    text-transform: capitalize;
    font-weight: 400;
    margin: 15px 0 20px;
}
.explore-rating-price a {margin:0;}
.explore-rating {
    display: inline-block;
    width: 32px;
    height: 20px;
    line-height: 20px;
    color: #fff;
    text-align: center;
    border-radius: 3px;
    font-weight: 500;
    margin-right: 10px;
}
.explore-price {color: #f63138;}
.explore-price-box {
    display: inline-block;
    padding: 0 10px;
    margin: 0 8px;
    border-left: 1px solid #dde0e4;
    border-right: 1px solid #dde0e4;
}
.explore-person {
    padding-bottom: 28px;
    border-bottom: 1px solid #e1e5eb;
}
.explore-person-img{
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.explore-person p {font-size: 12px;}
.explore-open-close-part {
    margin-top: 20px;
}
.close-btn {
    color: #f63138;
    text-transform: capitalize;
}
.close-btn.open-btn {color: #00c437;}
.explore-map-icon{text-align: right;}
.explore-map-icon a svg {
    width: 12px;
    height: 14px;
    margin-left: 23px;
    color: #767f86;
}
.explore-map-icon a svg:hover{color: #f63138;}
.single-explore-txt.bg-theme-2 .explore-map-icon a svg:hover{color: #00c437;}
.single-explore-item:hover {box-shadow: 0 10px 20px rgb(255 84 90);
}


/*-------------------------------------
        8. Reviews
--------------------------------------*/
.reviews{padding:117px 0 75px;}
.reviews-content {margin-top:36px;}

/*single-testimonial-box */
.single-testimonial-box  {
    padding: 50px 30px;
    box-shadow: 0 0px 5px rgba(71,71,71,.2); 
    overflow-x:hidden;
    -webkit-transition: .3s; 
    -moz-transition:.3s; 
    -ms-transition:.3s; 
    -o-transition:.3s;
    transition: .3s;
}
.single-testimonial-box:hover{box-shadow:0 10px 20px rgba(21,19,19,.2);}
.slick-current .single-testimonial-box{box-shadow:0 10px 20px rgba(21,19,19,.2);}
/*testimonial-description*/
.single-testimonial-box{
    width: 404px;
    background:#fff;
}
/* testimonial-info */
.testimonial-info {
    display: flex;
    align-items: center;
    text-transform:capitalize;
}
.testimonial-img {
    position: relative;
    top: 11px;
    margin-right: 5px;
    border-radius:50%;
    -webkit-transition: .3s; 
    -moz-transition:.3s; 
    -ms-transition:.3s; 
    -o-transition:.3s;
    transition: .3s;
}
.testimonial-person {
    margin-left: 15px;
    margin-top: 11px;
}
.testimonial-person h2 {
    color: #505866;
    font-size: 18px;
}
.testimonial-person h4 {
    color: #a2a5ab;
    font-size: 14px;
    font-weight: 400;
    margin-top: 10px;
}
.testimonial-person-star i {
    color: #ffda2b;
    margin: 9px 4px 0 0;
}/* testimonial-info */


/* testimonial-comment */
.testimonial-comment {
    margin-top: 18px;
}
.testimonial-comment p{
    color: #8d939e;
    font-size: 14px;
    font-weight: 300;
}/* testimonial-comment */


/*.slick-slide*/
.slick-initialized .slick-slide {
    display: block;
    padding: 40px 0;
}
.slick-slide.slick-cloned {outline: 0!important;}
.slick-slide {
  margin: 0px 10px;
}
.slick-slide {
  transition: all ease-in-out .3s;
  opacity: .5;
}
.slick-active {
  opacity: .5;
}
.slick-current {
  opacity: 1;
}
/*.slick-slide*/

/*-------------------------------------       
        9.  Counter
--------------------------------------*/
.statistics{
    position:relative;
    display: flex;
    align-items: center;
    background:url(../../assets/images/counter/counter-banner.jpeg)no-repeat fixed;
    background-position:center;
    background-size:cover;
    padding:127px 0 120px;
}
.statistics:before{
    position:absolute;
    content:'';
    background: rgba(75,75,75,.60);
    height:100%;
    width:100%;
    top:0;
    left:0;
}
/* single-ststistics-box */
.single-ststistics-box {
    text-align: center;
    margin-bottom:30px;

}
/* single-ststistics-box */
.statistics-content{
    display: flex;
    justify-content: center;
    color:#fff;
    font-size:60px;
}
.statistics-content span {
    margin-left: 5px;
}
.single-ststistics-box h3{
    color:#fff;
    font-size:24px;
    text-transform:capitalize;
    font-weight: 500;
}

/*-------------------------------------
        10. Blog
--------------------------------------*/
.blog{padding:120px 0 90px;}
.blog-content{margin-top: 80px;}

.single-blog-item{
    margin-bottom: 30px;
    box-shadow: 0 0px 5px rgba(71,71,71,.2);
    -webkit-transition: .3s; 
    -moz-transition:.3s; 
    -ms-transition:.3s; 
    -o-transition:.3s;
    transition: .3s;
}
.single-blog-item-txt {padding:  25px 28px 27px;}
.single-blog-item-txt h2 a {text-transform:  initial;line-height: 1.8;}
.single-blog-item-txt h4 {
    font-size:  14px;
    color:  #8f949d;
    font-weight:  400;
    margin: 12px 0 20px;
}
.single-blog-item-txt h4 a {
    font-size:  14px;
    padding-right:  14px;
    border-right: 1px solid #dde0e4;
    margin-right:  15px;
    text-transform: uppercase;
}

.single-blog-item:hover h2 a {color:#ff545a;}
.single-blog-item:hover{
    box-shadow: 0 10px 20px rgba(21,19,19,.4);
}


/*-------------------------------------
        11. Subscribe
--------------------------------------*/
.subscription{
    background: #f8fafb;
    padding:150px 0;
}
/*subscribe-title*/
 .subscribe-title {margin-bottom: 52px;}

.subscribe-title h2{
    font-size:24px;
    font-weight: 500;
    text-transform: uppercase;
}
.subscribe-title p{
    color:#7b8088;
    font-size:16px;
    font-weight: 500;
    margin-top: 28px;
}/*subscribe-title*/


/*custom-input-group*/
.subscription-input-group {
    position: relative;
    text-align: center;
    max-width: 630px;
    margin:0 auto;
}

.subscription-input-group .subscription-input-form{
    display: inline-block;
    width: 630px;
    height: 60px;
    padding-left:30px;
    font-size: 16px;
    color: #a5adb3;
    -webkit-border-radius:3px;
    -moz-border-radius:3px;
    border-radius:3px;
    border:1px solid #fff;
    box-shadow: 0 0px 10px rgba(21,19,19,.1);
     -webkit-transition:0.3s linear;
    -moz-transition:0.3s linear;
    -o-transition:0.3s linear;
    transition:0.3s linear;
}
.subscription-input-group:hover .subscription-input-form{
    box-shadow: 0 5px 20px rgba(21,19,19,.4);
}
/*custom-input-group*/

/*appsLand-btn*/
.appsLand-btn {
    position: absolute;
    top: 0;
    right: 0;
    background: #ff545a;
    display: inline-block;
    width: 180px;
    height: 60px;
    line-height: 60px;
    text-decoration: none;
    border-top-right-radius:3px;
    border-bottom-right-radius:3px;
    text-transform:capitalize;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border: 0;
    overflow: hidden;
    cursor: pointer;
    -webkit-transition:0.3s ease-in-out;
    -moz-transition:0.3s ease-in-out;
    -o-transition:0.3s ease-in-out;
    transition:0.3s ease-in-out;
}
.appsLand-btn:hover, .appsLand-btn:focus, .appsLand-btn:active {
    text-decoration: none;
    outline: none;
}
.appsLand-btn:hover {
    box-shadow:0 5px 10px rgba(71,71,71,.4);
    background: #f43032;
}
/*appsLand-btn*/

/*-------------------------------------
        12. Footer
--------------------------------------*/
.footer-menu {padding: 45px 0;}
.footer-menu .navbar-header{padding:0;}
.footer-menu .navbar-header a.navbar-brand,.footer-menu.footer-menu .navbar-header a.navbar-brand:hover,.footer-menu .navbar-header a.navbar-brand:focus{
    padding:0;
    height: 0;
}
.footer-menu ul.footer-menu-item{text-align: right;}
.footer-menu ul.footer-menu-item li{display: inline-block;}
.footer-menu ul.footer-menu-item li a {
    color: #859098;
    font-size: 14px;
    text-transform: uppercase;
    padding-left: 40px;
    -webkit-transition:0.3s linear;
    -moz-transition:0.3s linear;
    -o-transition:0.3s linear;
    transition:0.3s linear;
}
.footer-menu ul.footer-menu-item li a:hover{color: #f43032;}
.hm-footer-copyright {
    padding: 40px 0;
    border-top: 1px solid #e1e5eb;
}
.hm-footer-copyright p,.hm-footer-copyright p a {
    color: #a5adb3;
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
}
.footer-social {text-align: right;}
.footer-social .fa-phone:before {
    position: relative;
    top: 2px;
}
.footer-social a ,.footer-social span {
    display: inline-block;
    color: #afb4bf;
    font-size: 14px;
    margin-left: 15px;
    -webkit-transition: .3s; 
    -moz-transition:.3s; 
    -ms-transition:.3s; 
    -o-transition:.3s;
    transition: .3s;
}
.footer-social a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: #eef2f6;
    text-align: center;
    border-radius: 50%;
}
.footer-social span {margin-right:15px;margin-left: 0;color: #a5adb3;}
.footer-social span:hover{color: #ff545a;}
.footer-social a:hover {background:#ff545a;color: #fff;}

/*===============================
    Scroll Top
===============================*/
#scroll-Top  .return-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: none;
    width: 40px;
    line-height: 40px;
    height: 40px;
    text-align: center;
    font-size: 20px;
    cursor: pointer;
    color: #fff;
    background:#ff545a;
	border:1px solid #ff545a;
	border-radius:50%;
	-webkit-transition: .5s; 
	-moz-transition:.5s; 
	-ms-transition:.5s; 
	-o-transition:.5s;
    transition: .5s;
	z-index: 2;
}
#scroll-Top  .return-to-top:hover {
    background:#f43032;
	border:1px solid #ff545a;
}

#scroll-Top  .return-to-top i{
    position:relative;
    bottom:0;

}

#scroll-Top  .return-to-top i{
    position: relative;
    animation-name: example;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    animation-duration:1s;
}
@keyframes example {
    0%   {bottom:0px;}
    100%  {bottom:7px;}
}
/*========================Thank you=================*/



/* === Mobile bottom navigation (and hide header on phones) === */
@media (max-width: 767px) {
  /* Hide existing header/navigation on small screens */
  .top-area, .header-area, nav.navbar.bootsnav { display: none !important; }

  /* Provide page bottom space so content isn't hidden behind the bar */
  body { padding-bottom: 70px; }
}

.mobile-bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 60px;
  background: #fff;
  border-top: 1px solid #e6e6e6;
  box-shadow: 0 -6px 20px rgba(0,0,0,.08);
  z-index: 99998;
  display: none; /* default hidden on desktop */
}
.mobile-bottom-nav .mbn-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.mobile-bottom-nav a {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #666;
  font-size: 11px;
}
.mobile-bottom-nav a .fa {
  font-size: 20px;
  margin-bottom: 3px;
}
.mobile-bottom-nav a.active,
.mobile-bottom-nav a:hover {
  color: #ff545a; /* brand accent */
}
.mobile-bottom-nav a.active .fa { color: #ff545a; }

/* Cart badge on bottom bar */
.mobile-bottom-nav .cart-link {
  position: relative;
}
.mobile-bottom-nav .cart-link .cart-badge {
  position: absolute;
  top: 2px;
  right: calc(50% - 8px);
  transform: translateX(8px);
}

/* Show only on small screens */
@media (max-width: 767px) {
  .mobile-bottom-nav { display: block; }
}

/* === Mobile overflow fixes (index.html) === */
@media (max-width: 767px) {
  html, body { overflow-x: hidden; }
  /* Make hero/search and subscription inputs fluid */
  .welcome-hero-serch-box,
  .welcome-hero-form,
  .subscription-input-group { max-width: 100% !important; width: 100% !important; }
  .subscription-input-group .subscription-input-form {
    width: 100% !important;
    padding-right: 190px; /* space for button on the right */
    box-sizing: border-box;
  }
  /* Avoid any accidental horizontal scroll from scrollable menus */
  .menu-ui-design { overflow-x: hidden; }
}

/* === list-topics: 2-up grid on mobile, last centered if odd === */
@media (max-width: 767px) {
  #list-topics .list-topics-content ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px; /* space between cards */
    padding: 8px; /* space from screen edges */
    margin: 0;
  }
  #list-topics .list-topics-content ul li {
    list-style: none;
    flex: 0 0 calc(50% - 12px); /* two per row accounting for gap */
    max-width: calc(50% - 12px);
    padding: 0; /* spacing handled by gap */
    box-sizing: border-box;
  }
  #list-topics .single-list-topics-link { display: block; height: 100%; }
  /* When total count is odd, make the last one full-width and center its card */
  #list-topics .list-topics-content ul li:last-child:nth-child(odd) { width: 100%; display: flex; justify-content: center; }
  #list-topics .list-topics-content ul li:last-child:nth-child(odd) .single-list-topics-link { width: 90%; max-width: 340px; }
}

/* === Global: Filter/Sort bar (applies to all category pages) === */
/* Target the utility row directly following the section header */
.explore .section-header + .row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 22px;
  box-shadow: 0 8px 22px rgba(0,0,0,.06);
}
.explore .section-header + .row > [class*="col-"] {
  display: flex;
  align-items: center;
}

/* Modern selects */
.explore #priceFilter,
.explore #sortSelect {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ff545a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 10px 36px 10px 12px;
  min-width: 220px;
  height: 44px;
  color: #333;
  box-shadow: inset 0 1px 2px rgba(0,0,0,.04);
  transition: border-color .2s ease, box-shadow .2s ease, transform .05s ease;
}
.explore #priceFilter:hover,
.explore #sortSelect:hover {
  border-color: #ff545a;
}
.explore #priceFilter:focus,
.explore #sortSelect:focus {
  border-color: #ff545a;
  box-shadow: 0 0 0 3px rgba(255,84,90,.2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ff545a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  outline: none;
}

/* Optional helper labels remain visually hidden via Bootstrap's sr-only */
.explore label.sr-only { margin-right: 8px; }

/* Compact layout on tablets */
@media (max-width: 991px) {
  .explore #priceFilter,
  .explore #sortSelect { min-width: 180px; }
}

/* Stack vertically on phones */
@media (max-width: 576px) {
  .explore .section-header + .row {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 10px;
  }
  .explore .section-header + .row > [class*="col-"] { width: 100%; }
  .explore #priceFilter,
  .explore #sortSelect { width: 100%; min-width: 0; }
}

/* === Price label prefix across site === */
/* Prepend "Price " before INR amounts for common price elements */
.product_price::before,
.price-big::before,
.mini-cart-item .price::before,
.mini-rec-price::before,
.pd-price .current::before,
.pd-price .old::before,
.mini-cart-total .total-val::before {
  content: "Price ";
  /* inherit typography so label blends naturally */
  color: inherit;
}

/* Ensure spacing looks right when elements are block-level or flex children */
.pd-price .current::before,
.pd-price .old::before {
  margin-right: 0.1em;
}

/* === Mini Cart: final overrides and stability fixes === */
/* Ensure JS-controlled heights are not constrained by earlier rules */
.mini-cart-items { max-height: initial; }

/* Keep recommendations visible and scrollable; JS will fine-tune height */
.mini-cart-recs { max-height: 220px; overflow-y: auto; }
.mini-cart-recs-grid { overflow: visible; }

/* Prevent checkout button from shrinking/squeezing on hover */
.mini-cart-checkout {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  padding: 10px 14px !important;
  line-height: 1.2 !important;
  border-radius: 8px !important;
  background: #111 !important;
  color: #fff !important;
  transition: background-color .2s ease, color .2s ease !important;
}
.mini-cart-checkout:hover { background: #000 !important; color: #fff !important; }

/* Make sure the mini-cart container allows internal scrolling areas to be visible */
.mini-cart { overflow: hidden; display: flex; flex-direction: column; }