/* ========================================
   SKELETON PRELOADER SYSTEM
   ======================================== */

@keyframes shimmer {
  0% { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

.skeleton {
  background: linear-gradient(90deg, #f0f0f0 8%, #e4e4e4 38%, #f0f0f0 54%);
  background-size: 800px 100%;
  animation: shimmer 1.2s infinite linear;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

.skeleton::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.6) 50%, transparent 100%);
  animation: shimmer 1.2s infinite linear;
  background-size: 800px 100%;
}

.skeleton-pulse { animation: pulse-opacity 1.5s ease-in-out infinite; }
@keyframes pulse-opacity { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.page-loading-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #f8f8f8;
  z-index: 99999;
  overflow-y: auto;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  padding-top: 120px;
}

.page-loading-overlay.fade-out { opacity: 0; visibility: hidden; pointer-events: none; }
.skeleton-page-content { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.skeleton-header { position: fixed; top: 0; left: 0; right: 0; height: 120px; background: #fff; z-index: 100000; display: flex; align-items: center; padding: 0 20px; gap: 20px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.skeleton-logo { width: 150px; height: 40px; border-radius: 6px; flex-shrink: 0; }
.skeleton-search { flex: 1; height: 40px; border-radius: 6px; max-width: 600px; }
.skeleton-nav-icons { display: flex; gap: 15px; margin-left: auto; }
.skeleton-icon { width: 36px; height: 36px; border-radius: 50%; }
.skeleton-banner-container { width: 100%; margin-bottom: 24px; }
.skeleton-banner-main { width: 100%; height: 320px; border-radius: 10px; }
.skeleton-banner-row { display: flex; gap: 12px; margin-bottom: 24px; }
.skeleton-banner-small { flex: 1; height: 150px; border-radius: 10px; }
.skeleton-banner-large { flex: 2; height: 320px; border-radius: 10px; }
.skeleton-section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid #e9e9e9; }
.skeleton-section-title { width: 180px; height: 24px; border-radius: 4px; }
.skeleton-section-button { width: 100px; height: 36px; border-radius: 20px; }
.skeleton-products-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-bottom: 24px; }
.skeleton-product-card { border-radius: 10px; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.08); overflow: hidden; display: flex; flex-direction: column; }
.skeleton-product-card .sk-image { width: 100%; aspect-ratio: 1 / 1; border-radius: 0; }
.skeleton-product-card .sk-content { padding: 10px 12px 14px; display: flex; flex-direction: column; flex: 1; }
.skeleton-product-card .sk-code { width: 45%; height: 11px; margin-bottom: 6px; }
.skeleton-product-card .sk-title { height: 14px; width: 100%; margin-bottom: 5px; }
.skeleton-product-card .sk-title-line2 { height: 14px; width: 75%; margin-bottom: 10px; }
.skeleton-product-card .sk-stars { width: 80px; height: 12px; margin-bottom: 10px; }
.skeleton-product-card .sk-price { width: 55%; height: 18px; margin-top: auto; }
.skeleton-product-card .sk-old-price { width: 40%; height: 12px; margin-top: 4px; margin-bottom: 0; }
.skeleton-loading .product-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
@media (max-width: 991px) { .skeleton-loading .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 576px) { .skeleton-loading .product-grid { grid-template-columns: repeat(2, 1fr); } }
.skeleton-flash-sale { background: #fff; border-radius: 10px; padding: 16px; margin-bottom: 24px; }
.skeleton-flash-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.skeleton-flash-title { width: 140px; height: 22px; border-radius: 4px; }
.skeleton-flash-timer { display: flex; gap: 6px; }
.skeleton-timer-block { width: 32px; height: 32px; border-radius: 6px; }
.skeleton-categories-container { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 10px; margin-bottom: 24px; }
.skeleton-category-card { text-align: center; flex: 0 0 auto; width: 100px; padding: 10px; }
.skeleton-category-circle { width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 8px; }
.skeleton-category-label { width: 80%; height: 12px; margin: 0 auto; border-radius: 4px; }
.skeleton-sellers-row { display: flex; gap: 10px; margin-bottom: 24px; }
.skeleton-seller-card { width: 180px; height: 120px; border-radius: 10px; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.08); flex-shrink: 0; }
.skeleton-detail-layout { display: flex; gap: 30px; margin-bottom: 30px; }
.skeleton-gallery { flex: 1; }
.skeleton-main-image { width: 100%; aspect-ratio: 1 / 1; border-radius: 8px; margin-bottom: 10px; }
.skeleton-thumbs { display: flex; gap: 8px; }
.skeleton-thumb { width: 60px; height: 60px; border-radius: 6px; }
.skeleton-detail-info { flex: 1; display: flex; flex-direction: column; }
.skeleton-detail-title { width: 100%; height: 22px; margin-bottom: 12px; }
.skeleton-detail-rating { width: 120px; height: 14px; margin-bottom: 16px; }
.skeleton-detail-price-block { margin-bottom: 16px; }
.skeleton-detail-price { width: 120px; height: 28px; margin-bottom: 4px; }
.skeleton-detail-old-price { width: 80px; height: 14px; }
.skeleton-detail-desc-line { width: 100%; height: 12px; margin-bottom: 6px; }
.skeleton-sku-line { display: flex; gap: 8px; margin-bottom: 8px; }
.skeleton-sku-label { width: 80px; height: 12px; flex-shrink: 0; }
.skeleton-sku-value { width: 60%; height: 12px; }
.skeleton-sizes-row { display: flex; gap: 8px; margin-bottom: 16px; }
.skeleton-size-btn { width: 40px; height: 32px; border-radius: 4px; }
.skeleton-quantity { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.skeleton-qty-label { width: 60px; height: 12px; }
.skeleton-qty-input { width: 80px; height: 36px; border-radius: 4px; }
.skeleton-detail-buttons { display: flex; gap: 10px; margin-top: auto; }
.skeleton-btn-primary { height: 44px; flex: 1; border-radius: 6px; max-width: 200px; }
.skeleton-btn-icon { width: 44px; height: 44px; border-radius: 50%; }
.skeleton-cart-container { max-width: 900px; margin: 0 auto; }
.skeleton-cart-heading { width: 200px; height: 22px; margin-bottom: 16px; }
.skeleton-cart-item { display: flex; align-items: center; background: #fff; border-radius: 8px; padding: 16px; margin-bottom: 12px; box-shadow: 0 1px 3px rgba(0,0,0,0.06); }
.skeleton-cart-image { width: 80px; height: 80px; border-radius: 8px; flex-shrink: 0; margin-right: 16px; }
.skeleton-cart-details { flex: 1; }
.skeleton-cart-name { width: 70%; height: 14px; margin-bottom: 6px; }
.skeleton-cart-meta { width: 40%; height: 12px; margin-bottom: 10px; }
.skeleton-cart-price { width: 80px; height: 18px; }
.skeleton-cart-qty { display: flex; flex-direction: column; align-items: center; gap: 6px; margin-left: 16px; }
.skeleton-qty-btn { width: 36px; height: 36px; border-radius: 50%; }
.skeleton-qty-value { width: 40px; height: 16px; }
.skeleton-cart-summary { background: #fff; border-radius: 8px; padding: 16px; margin-top: 16px; box-shadow: 0 1px 3px rgba(0,0,0,0.06); }
.skeleton-summary-title { width: 140px; height: 18px; margin-bottom: 16px; }
.skeleton-summary-row { display: flex; justify-content: space-between; margin-bottom: 12px; }
.skeleton-summary-label { width: 100px; height: 14px; }
.skeleton-summary-value { width: 80px; height: 14px; }
.skeleton-summary-total { border-top: 1px solid #e9e9e9; padding-top: 12px; margin-top: 8px; }
.skeleton-summary-total .skeleton-summary-label { width: 100px; height: 16px; }
.skeleton-summary-total .skeleton-summary-value { width: 100px; height: 18px; }
.skeleton-tabs { display: flex; gap: 8px; margin-bottom: 16px; }
.skeleton-tab { width: 100px; height: 32px; border-radius: 20px; }
.skeleton-tab.active { width: 110px; }
#app { opacity: 0; transition: opacity 0.5s ease 0.2s; }
#app.loaded { opacity: 1; }

@media (max-width: 991px) {
  .skeleton-banner-main { height: 200px; }
  .skeleton-banner-large { height: 200px; }
  .skeleton-products-grid { grid-template-columns: repeat(3, 1fr); }
  .skeleton-detail-layout { flex-direction: column; gap: 20px; }
  .skeleton-header { height: 100px; }
  .page-loading-overlay { padding-top: 100px; }
}

@media (max-width: 576px) {
  .skeleton-products-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .skeleton-banner-row { flex-direction: column; }
  .skeleton-banner-main { height: 160px; }
  .skeleton-banner-large, .skeleton-banner-small { height: 140px; }
  .skeleton-header { height: 80px; padding: 0 10px; gap: 10px; }
  .skeleton-logo { width: 100px; height: 30px; }
  .skeleton-search { height: 34px; }
  .page-loading-overlay { padding-top: 80px; }
  .skeleton-cart-item { padding: 12px; }
  .skeleton-cart-image { width: 60px; height: 60px; margin-right: 10px; }
}

/* ========================================
   ORIGINAL STYLES BELOW
   ======================================== */

.loader
{
  background: rgba( 255, 255, 255, 0.8 );
  display: none;
  height: 100%;
  position: fixed;
  width: 100%;
  z-index: 9999;
}

.loader img
{
  left: 50%;
  margin-left: -32px;
  margin-top: -32px;
  position: absolute;
  top: 50%;
}

.load-more-btn{
  width: 10rem; 
  margin: 0 auto;
  color: #fff;
  border: none;
  /* background: #FF3860; */
  background: linear-gradient(45deg, #FF3860, #feb47b);
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease-in-out;
}

.load-more-btn:hover{
  opacity: 0.7;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease-in-out;
}

.load-more-btn a{
  padding: 10px 0;
  display: block;
  text-align: center;
  font-weight: 500;
  color: white;
  font-size: 1rem;
}

/* .full-layer-outer-header .social-icons li a{
  width: 30px; 
  border: 1px solid black; 
  border-radius: 50%; 
  height: 30px; 
  text-align: center; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  margin-left: 10px;
} */

.full-layer-bottom-header .custom-menu{
  padding: 0 0px;
}

.full-layer-bottom-header .custom-menu .custom-menu-nav-item{
  margin: 0 0.15rem !important;
}
.full-layer-bottom-header .custom-menu .custom-menu-nav-item .custom-menu-nav-link{
  background: #E9E9E9;
  padding: 0.5rem 1rem;
  border-radius: 18px;
}

.full-layer-mid-header{
  padding: 10px 18px !important;
}

.full-layer-bottom-header .custom-menu {
  padding: 0;
  display: flex; /* Align the list items horizontally */
  overflow-x: auto; /* Enable horizontal scrolling */
  white-space: nowrap; /* Prevent items from wrapping */
  margin: 0;
  list-style: none; /* Remove default list styling */
  scrollbar-width: thin; /* For Firefox, thin scrollbar */
  -webkit-overflow-scrolling: touch; /* Enable smooth scrolling on mobile */
}

/* For Firefox */
.full-layer-bottom-header .custom-menu {
  scrollbar-width: thin; /* Thin scrollbar for Firefox */
  scrollbar-color: #ffffff #F3F3F3; /* Thumb color and track color for Firefox */
}

.custom-header-menu-icon {
  /* width: 30px;
  border: 1px solid black;
  border-radius: 50%;
  height: 30px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px; */
}

.custom-header-menu-icon:hover{
  background: #d90429;
  color: white !important;
  transition: all 0.4s;
  border: white !important;
}

.custom-header-menu-icon i{
  margin-right: 10px;
}

.mt-40{
  margin-bottom: 40px;
}

/* Mobile Footer Menu Section Design Start */
.footer-menu {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  text-align: center;
  padding: 8px 0;
  height: 65px;
  z-index: 9999;
  display: none;
  border-top-left-radius: .5rem;
  border-top-right-radius: .5rem;
  box-shadow: rgba(0, 0, 0, 0.1) 0 0 4px;
}
.footer-menu ul{
  display: flex;
  list-style: none;
  padding: 0;
}
.footer-menu ul li{
  flex: 1 auto;
  padding: 2px 12px;
  position: relative;
  text-align: center;
}
.footer-menu ul li a {
  color: #444;
  font-size: 13px;
  font-weight: 600;
  display: block;
}
.footer-menu ul li a span {
  display: block;
}
/* Mobile Footer Menu Section Design End */

/* Heaer Section Design Start */
.full-layer-mid-header.scrolled{
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 20000;
}

.full-layer-mid-header.scrolled .custom-shadow{
  padding-bottom: 8px;
  box-shadow: 0 5px 7px rgba(0, 0, 0, 0.2);
}

.full-layer-mid-header.scrolled .brand-logo img{ 
  height: 60px !important;
}
.full-layer-bottom-header .home-category-container-wrapper .v-list{
  height: 320px;
}
/* .full-layer-bottom-header{
  
}
.full-layer-bottom-header .home-category-container-wrapper{

}

.full-layer-bottom-header .home-category-container-wrapper .v-list{
  height: 320px;  
  -webkit-overflow-scrolling: touch;
}
.full-layer-bottom-header .home-category-container-wrapper .v-list.hover-effect{
  overflow-y: auto;
  overflow-x: hidden;
}
.full-layer-bottom-header .home-category-container-wrapper .v-list::-webkit-scrollbar {
  width: 10px;
}

.full-layer-bottom-header .home-category-container-wrapper .v-list::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 10px;
  border: 2px solid #f1f1f1;
}

.full-layer-bottom-header .home-category-container-wrapper .v-list::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

.full-layer-bottom-header .home-category-container-wrapper .v-list::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}

.full-layer-bottom-header .home-category-container-wrapper .v-list {
  scrollbar-color: #888 #f1f1f1;
  scrollbar-width: thin;
} */
/* Heaer Section Design End */

/* Slider Section Design Start */
.slider-wrapper .slider-container {
  height: 320px;
  border-radius: 10px;
}
.slider-wrapper .slider-container .slider-item{
  overflow: hidden;
  height: 320px;
  border-radius: 10px;
}
.slider-wrapper .slider-container .slider-item img{
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  border-radius: 10px;
}
/* Slider Section Design Start */

/* Campaign Section Start */
.flash-sale{
  /* display: flex;
  align-items: center; */
}

.flash-sale .flash-title{
  font-weight: 700;  
}

.flash-sale .flash-timer{
  display: flex;
}
.flash-sale .flash-timer .flash-timer-content{
  line-height: 0.9rem;
}

.flash-sale p{
  font-size: 0.8rem;
  color: #d93c81;
  font-weight: 700;
}
.flash-sale small{
  font-size: 0.7rem;
}

.flash-sale-button{
  height: 35px;
  background: #d93c81;
  border-radius: 3rem;
  border: none;
  color: white;
  font-size: 16px;
  padding: 0 20px;
  cursor: pointer;
}

.flash-sale-button.sm-flash-sale-button{    
    width: 94%;
    margin-left: 3%;
}

.custom-button{
  width: 20rem;
  height: 40px;
  background: #e83e8c;
  border-radius: 5px;
  border: none;
  color: white;
  font-size: 16px;
  padding: 0 20px;
  cursor: pointer;
}

.custom-button:hover{
  color: #fff;
  background: #d93c81;
  transition: all ease 0.3s;
}

.flash-sale-products .product-default  {
  border-radius: 7px;
  background: white;
}

.flash-sale-products .product-default img {
  border-radius: 7px 7px 0px 0px;
}

.flash-sale-banner {
  border-radius: 10px;
  height: 34rem;
}

.item.campaign-single-product {  
  margin: 0 5px 20px !important;
}

.campaign-single-product {
  width: 100%;
  border-radius: 10px;
  position: relative;
  box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.1);
  border: none;
  transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.campaign-single-product:hover {
  box-shadow: 0px 4px 10px 2px rgba(0, 0, 0, 0.2);
}

.campaign-single-product .image-container:hover {
  box-shadow: 0px 4px 10px 2px rgba(0, 0, 0, 0.2);
}

.campaign-single-product .item-img-wrapper-link img{
    width: 100%;
    height: 12rem;
    object-fit: cover;
}

.campaign-single-product .item-img-wrapper-link {
  width: 100%;
  /* height: 10rem; */
  padding: 10px 10px;
}

.campaign-single-product .item-content{
  padding-top: 4px;
 }

.campaign-single-product .what-product-is {
  margin-bottom: 0;
  border-bottom: 0;
}

.campaign-single-product .item-title {
  min-height: 30px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.campaign-single-product .category-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.campaign-single-product .heart-icon {
  font-size: 16px;
  color: rgb(156, 154, 154);
  transition: color 0.3s ease; /* Smooth transition */
}

.campaign-single-product .heart-icon:hover {
  color: #d93c81; 
  font-family: 'Font Awesome 5 Free'; 
  font-weight: 900;
  content: '\f004'; 
}

.campaign-single-product .quick-view-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%; /* Set the quick view container width to match the product container */
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s, opacity 0.3s ease;
  padding: 0.4rem 1.4rem;
  background-color: #d93c81;
  text-align: center;
}

.campaign-single-product:hover .quick-view-container {
  visibility: visible;
  opacity: 1;
}

.campaign-single-product .btn-quickview {
  width: 100%; 
  color: #fff;
  font-size: 0.8rem;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  border: none;
  line-height: 1.82;
  font-family: Poppins, sans-serif;
}

.campaign-single-product .btn-icon-group {
  position: absolute;
  top: 15px;
  right: 15px;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s, opacity 0.3s ease-in-out;
}

.campaign-single-product:hover .btn-icon-group {
  visibility: visible;
  opacity: 1;
}

.campaign-single-product .btn-add-cart {
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  border: none;
  line-height: 1.82;
  font-family: Poppins, sans-serif;
  background-color: #d93c81;
  text-align: center;
  width: 38px;
  border-radius: 38px;
  padding: 5px;
  display: block;
}

.campaign-single-product .item-img-wrapper-link:before {
  background-color: transparent;
}

.campaign-single-product .tag-label.new {
  background-color: #2ba968;
}
.campaign-single-product .tag-label.discount {
  background-color: #da5555;
}

.campaign-single-product .tag-label {
  position: absolute;
  top: 10px;
  left: 10px;
  display: block;
  text-align: center;
  margin-bottom: 5px;
  text-transform: uppercase;
  padding: 5px 11px;
  color: #fff;
  font-weight: 500;
  font-size: 10px;
  line-height: 1;
  border-radius: 12px;
}

/* Campaign Section End */

/* Mega Category Section Start */
.section-title {
  border-bottom: 1px solid #DCDCDD;
  margin-bottom: 0.5rem !important;
  padding: 10px 0; 
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Sub-component-2 */
.section-title .section-title-h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: capitalize;
  color: #292929; 
  margin: 0;
}

/* Top Category Section Start */

.top-category-container {
  display: flex;
  flex-wrap: wrap; /* Allow wrapping to create two rows */
  max-height: 245px; /* Set fixed height for two rows */
  overflow-x: auto; /* Enables horizontal scrolling */
  overflow-y: hidden; /* Hides vertical scrollbar */
  white-space: normal; /* Allow items to wrap normally */
  scrollbar-width: thin; /* For Firefox, make scrollbar thin */
  scrollbar-color: #888 #f1f1f1; /* Custom scrollbar colors */
}

.single-item {
  box-sizing: border-box;
  flex: 0 0 calc(12.5% - 10px); /* 12.5% width for 8 items per row minus 10px gap */
  margin: 5px; /* Adjust margin as per your need */
  height: 110px; /* Adjust height to fit two rows within 300px total */
  text-align: center;
  background-color: #fff;
  border-radius: 5px;
  padding: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.single-item img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  height: 4rem; /* Adjust the height of the images */
}

.single-item a h3 {
  margin: 0;
  font-size: 12px;
  color: #1a1a1ad6;
  font-weight: 600;
  text-align: center;
  padding: 0 2px;
}

/* Add hover effects */
.single-item:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Custom scrollbar */
.top-category-container::-webkit-scrollbar {
  height: 8px; /* Adjust height of scrollbar */
}

.top-category-container::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}

.top-category-container::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 5px;
}

.top-category-container::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}
/* Top Category Start Design */

/* Banner Section Start Design Start */
.banners-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.banners-container div {
  width: 100%;
}
.banners-container .slider-fouc{
  background: red;
}

.banners-container .banner {
  position: relative;
  flex-grow: 1;
  padding: 0px 5px;
  transition:box-shadow 0.35s;
}

.banners-container .banner img {
  width:100%;
  height: 12rem;
}

.banners-container .banner-layer {  
  position: absolute;
  left:7.143%;
  right:7.143%;
}

.banners-container .banner .banner-layer a{
  font-weight: 700;
  font-size: 0.75rem;
  background: #FF7271;
  color: #fff !important;
  padding: 3px 10px;
  border-radius: 5px;  
}

.banners-container h3 {
  font-size:1.5em;
  color: #646566;
  font-weight: 700;
}

.banners-container .banners-slider .banner3 .banner-layer {
  left: -7.143%;
}

.banners-container h4 {
  margin-bottom:2rem;
  font-size:0.875em;
  font-weight:600
}

.banner1 h4 {
  padding-bottom:1px;
  font-size:1.8125em;
  font-weight:800
}

.banner1 .banner-layer {
  padding-bottom:1px
}

.banner1 del {
  margin-right:2px
}

.banner1 sup {
  top:-0.3em;
  font-size:70%;
  font-weight:700
}

.banner2 img {
  border:solid #e7e7e7;
  border-width:0.9em
}

.banner2 h3 {
  font-size:1.25em
}

.banner2 .banner-layer {
  padding-top:10px;
  left:0;
  right:0
}

.banner3 h4 {
  padding-bottom:3px;
  font-size:0.9375em;
  line-height:1.4
}

.banner3 .banner-layer {
  padding-bottom:1px
}

.banner3 img {
  object-position:left
}
/* Banner Section Design End */

/* Home Page Tab Product Design Start */
.top-collection-section .sec-maker-header {
  border-bottom: none;
  margin-bottom: 0px;
  padding: 0px 0;
}

.top-collection-section .tab-nav-style-1-a > .nav-item > .nav-link{ 
  background: #E9E9E9;
  color: #727272;
  border-radius: 20px;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease-in-out;
}

.top-collection-section .tab-nav-style-1-a > .nav-item > .nav-link.active{
  color: #fff;
  border: none;
  background: #FF3860;
  border-radius: 20px;
  /* font-weight: 700; */
}

.top-collection-section .tab-nav-style-1-a > .nav-item > .nav-link:hover{ 
  color: #d90429;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.top-collection-section .tab-nav-style-1-a > .nav-item > .nav-link.active:hover {
  background: #FF6789;
  /* font-weight: 700; */
  color: #fff;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
}

.tab-nav-style-1-a > .nav-item > .nav-link:after{
  background-color: none;
  height: 0px;
}
/* Home Page Tab Product Design Start */

/* Banner Section 2 Design Start */
.banner_section_2.hc .small_banner img {
  /* margin-bottom: 22px; */
  /* padding: 0 !important; */
  height: 145px;
}

.banner_section_2.hc .small_banner.first img, .banner_section_2.hc .small_banner.third img {
  margin-bottom: 10px;
}

.banner_section_2.hc .big_banner img {
  /* margin-bottom: 22px; */
  /* padding: 0 !important; */
  height: 300px;
}
/* Banner Section 2 Design End */

/* Top Seller Section Start */
.top-seller-container {
  display: flex;
  flex-wrap: wrap; 
  max-height: 320px;
  overflow-x: auto;
  overflow-y: hidden; 
  white-space: normal; 
  scrollbar-width: thin; 
  scrollbar-color: #888 #f1f1f1;
}

.top-seller-container .single-item{ 
  flex: 1 0 calc(17% - 10px);
  height: 150px !important;
}

.top-seller-container .single-item .banner-image { 
  width: 100%;
  height: 60%;
}

.top-seller-container .single-item .banner-image img {  
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}

.top-seller-container .single-item .content{ 
  position: absolute;
  bottom: -50%;
  left: 26%;
}

.top-seller-container .single-item .content .thumbnail{ 
  width: 6rem;
  height: 50px;
  border: 1px solid #F3F3F3;
  padding: 5px;
  background: #fff;
  border-radius: 5px;
}

.top-seller-container .single-item .content .thumbnail img{ 
  width: 100%;
  height: 100%;
}

/* Top Seller Section End */

/* Top Brand Section Start */
.top-brand-slider .single-item {
  height: 5rem !important;
  /* box-sizing: border-box;
  flex: 0 0 calc(12.5% - 10px);
  margin: 5px;
  height: 110px;
  text-align: center;
  background-color: #fff;
  border-radius: 5px;
  padding: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease; */
}
/* Top Brand Section End */


/* Pro2 Design End */
.app-priority .priority-wrapper{
    border-bottom: none;      
}

.app-priority .priority-wrapper .single-item-wrapper{
  background: #fff;
  margin: 0 7px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding-bottom: 1rem;
  border-radius: 10px;
}

.app-priority .priority-wrapper .single-item-wrapper:hover{
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


/* Footer Section Design Start */
.footer .newsletter-banner {
  background-color: #e7e7e7;
  padding: 10rem 0;  
}

.footer .newsletter-banner.bg-img {
  background-position: center;
  background-repeat: no-repeat;
  /* background-size: cover; */
  width: 100%;
  height: 100%;
}

.footer .newsletter-banner.banner {
  position: relative;
  font-size: 1rem;
  /* transform: translate(0%, 30%);
  display: block; */
}
.newsletter-banner .banner-content {
  padding-left: 4.8rem;
  letter-spacing: -0.02em !important;
  font-family: Poppins, sans-serif;
  position: absolute;
  top: 20%;
  left: 0%;
}

.newsletter-banner h2 {
  font-size: 1.5em;
  line-height: 1.2;
  letter-spacing: 0.02px !important;
  font-family: Poppins, sans-serif;
  font-weight: 700;
}

.newsletter-banner h5 {
  padding: -1px 2rem;
  font-size: 1em;
  letter-spacing: 1px;
  line-height: 1.5;
  color: #777 !important;
}

.newsletter-banner .form-control {
  height: 52px;
  font-size: 14px;
}

.widget-newsletter input:focus {
  border: none;
  box-shadow: none;
  outline: none;
}
.widget-newsletter input {
  max-width: 329.39px;
  padding: 0.8rem 2.04rem;
  border-width: 0;
  border-radius: 3.2rem 0 0 3.2rem;
  width: 70%;
}
.widget-newsletter button, .widget-newsletter input {
  max-height: 5.2rem;
}

.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.widget-newsletter button {
  padding: 0 0;
  border-radius: 0 3.2rem 3.2rem 0;
  width: 30%;
}
.widget-newsletter button, .widget-newsletter input {
  max-height: 3.2rem;
}
.newsletter-banner button {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 700;
}

.newsletter-banner .btn-primary {
  border-color: #d93c81;
  background-color: #d93c81;
  color: #fff;
  box-shadow: none;
  transition: all 0.3s ease-in-out;
}

.newsletter-banner .btn-primary:hover {
  border-color: #d93c81;
  background-color: #d93c81;
  opacity: 0.7;  
}

.footer .footer-container{
  background: #E9E9E9;
}
/* Footer Section Design End */

/* Page Breadcrumb Design Start */
.breadcrumb-nav ul{
  background: none !important;
  margin-bottom: 0 !important;
  padding: .75rem 0 !important;
}

.breadcrumb-nav li{
  font-size: 13px;
  transition: all 0.7s ease-in-out;
}

.breadcrumb-nav li i{
  font-size: 16px;
}

.breadcrumb-nav li a {
  transition: all 0.3s ease-in-out;
}
.breadcrumb-nav li.is-marked {
  font-weight: 600;
}

.breadcrumb-nav li a:hover{
  color: #da5555;
}
.page-content{
  margin-top: 2rem;
}
/* Page Breadcrumb Design End */

/* Product Details page Design Start */
.product-detail {
  text-align: left;
}
.product-detail .product-title h1{
  font-size: 1.5rem;
  font-weight: 600;
}
.product-detail .information-heading{
  margin: 0;
}
.product-detail .section-2-short-description{
  margin: 0;
  padding: 0;
}
.product-detail .section-3-price-original-discount{
  margin: 0;
  padding: 0;
}

.product-detail-page .detail-tabs-wrapper{
  padding-top: 25px;
}

.vendor-products .nav-item > .nav-link, 
.product-detail-page .nav-item > .nav-link{ 
  background: #E9E9E9;
  color: #727272;
  border-radius: 20px;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease-in-out;
  border: none;
}

.vendor-products .nav-item > .nav-link.active,
.product-detail-page .nav-item > .nav-link.active{
  color: #fff;
  border: none;
  background: #FF3860;
  border-radius: 20px;
  /* font-weight: 700; */
}

.vendor-products .nav-item > .nav-link:hover,
.product-detail-page .nav-item > .nav-link:hover{ 
  color: #d90429;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  border: none;
}

.vendor-products .nav-item > .nav-link.active:hover,
.product-detail-page .nav-item > .nav-link.active:hover {
  background: #FF6789;
  /* font-weight: 700; */
  color: #fff;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
}

.vendor-products .nav-item > .nav-link:after,
.product-detail-page .nav-item > .nav-link:after{
  background-color: none;
  height: 0px;
}

.product-detail.similar-product{
  padding-top: 0px;
}
/* Product Details page Design End */

/* Cart Page page Design Start */
.cart-product-heading {
  font-size: 1rem;
    font-weight: 500;
    font-size: 16px;
    color: #292929;
    font-weight: 600;
    /* letter-spacing: 0.7px; */
    /* border-bottom: 1px solid rgb(168, 168, 168); */
    border-bottom: 2px solid #E9E9E9;
    margin-bottom: 0;
}
.cart-item {
  display: flex;
  width: 100%; /* Ensures cart-item takes full width */
  border-top: 1px solid #E9E9E9;
  border-bottom: 1px solid #E9E9E9;
  padding: 10px 0;
  box-sizing: border-box; /* Include padding and border in width calculation */
  justify-content: space-between; /* Ensures spacing between elements */
  align-items: center; /* Vertically align items */
}

.cart-item .cart-icon-group {
  display: flex;
  flex-direction: column;
  margin-right: 10px; /* Adjust margin as needed */
  justify-content: space-between;
}

.cart-item .cart-icon {
  border: 1px solid #E9E9E9;
  border-radius: 21px;
  padding: 9px 11px;
  background: #fff;
  cursor: pointer;
}

.cart-item .cart-image {
  width: 4.5rem;
  height: 4.5rem;
  margin-right: 15px; /* Adjust space between image and content */
}

.cart-item .cart-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure the image fits without distortion */
}

.cart-item .cart-item-content {
  flex-grow: 1; /* Allows this section to take up available space */
}

.cart-item .cart-item-content h6 {
  font-size: 13px;
}

.cart-item .cart-item-content .product-name {
  display: -webkit-box; /* Enables flexbox-like behavior */
  -webkit-line-clamp: 2; /* Limits to 2 lines */
  -webkit-box-orient: vertical; /* Ensures the lines are displayed vertically */
  overflow: hidden; /* Hides the overflowed content */
  text-overflow: ellipsis; /* Adds "..." to the truncated text */  
  max-height: 3em; /* Adjust according to the line-height (1.5em * 2 lines = 3em) */
  line-height: 1.5em; /* Sets line height to maintain consistency */
}

.cart-item .cart-item-content .cart-price {
  margin-top: 10px;  
}

.cart-item .cart-item-content .cart-price h4{
  color: #d90429;
  font-size: 1rem;
}

.cart-item .cart-item-subtotal h4 {
  color: #d90429;
  font-size: 1rem;
  padding-right: 0.5rem;
}

.cart-item .cart-item-content .cart-price .original-price{
  font-size: 0.8rem;
}

.cart-item .cart-quantity {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cart-item .cart-quantity input {
  width: 50px;
  text-align: center;
  margin: 5px 0;
}

.cart-item .cart-quantity .cart-icon {
  font-size: 18px;
}

.cart-item .cart-quantity input{
  border: none;
  color: gray;
  background: transparent;
  text-align: center;
  font-size: 12px;
}
.cart-item .cart-quantity .minus-btn, 
.cart-item .cart-quantity .plus-btn {
  border: 1px solid #E9E9E9;
  border-radius: 21px;
  padding: 9px 11px;
  background: #fff;
  cursor: pointer;
}
/* Cart Page page Design End */

/* Vendor Products page Design Start */
.vendor-products .vendor-header{
  position: relative;
}
.vendor-products .banner-image{
 
}
.vendor-products .vendor-banner img{
  width: 100%;
  height: 8rem;
}
.vendor-products .vendor-header .vendor-content{
  position: absolute;
  top: 23px;
  left: 1rem;
  background: #F3F3F3;
  width: 50%;
  border-radius: 7px;
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.vendor-products .vendor-header .vendor-info{
  display: flex;
  align-items: center;
}
.vendor-products .vendor-header .vendor-info .logo {
  border: 1px solid #d90429;
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  overflow: hidden;
  margin: 0 1rem 0 0rem;
}

.vendor-products .vendor-header .vendor-info .logo img{
  width: 100%;
  height: 100%;
  padding: 1rem;
}

.vendor-products .vendor-header .vendor-info .vendor-name{
  font-size: 16px;
  color: rgb(85, 85, 85);
  max-width: 950px;
  overflow: visible;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 600;
}

.vendor-products .vendor-header .vendor-info .vendor-followers,
.vendor-products .vendor-header .vendor-info .vendor-rating{
  font-size: 0.75rem;
  line-height: 1.1rem;
}

.vendor-products .vendor-header .vendor-menu {
  padding-top: 1rem;
  border-bottom: 1px solid #DCDCDD;
  display: flex;
  justify-content: space-between; /* Keeps the two elements apart */
  align-items: center; /* Vertically centers both the ul and search form */
  background: #F3F3F3;
  height: 60px; /* Set a fixed height to help with vertical alignment */
}

.vendor-products .vendor-header .vendor-search-product {
  border-radius: 7px;
  height: 35px;
  display: flex; /* Flexbox to align the input and button inside */
  align-items: center;
  margin-bottom: 1rem;
}

.vendor-products .vendor-header .vendor-search-product input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 12px;
  padding: 0 0.5rem;
  color: rgb(85, 85, 85);
}

.vendor-products .vendor-header .vendor-search-product input:focus {
  border: none;
  background: transparent;
  outline: none;
}

.vendor-products .vendor-header .vendor-search-product button {
  background: #E9E9E9;
  padding: 10px 11px;
}

.vendor-products .product-grid  {
  margin: 0 5px 0px 0px !important;
}

.product-grid.list-view .cart-item{
  padding: 0 0;
}

/* Vendor Products page Design End */

/* Shop Page Design Start */
.shop-page .page-bar {
  margin: 0 0 0.7rem;
  padding: 0 0 !important;
  /* display: flex; 
  justify-content: space-between; 
  align-items: center; */
}
.shop-page .page-bar.filter-icon {
  flex: 1; 
  display: flex; 
  align-items: center; 
  align-content: flex-end; 
  justify-content: flex-end;
}

.page-bar .shop-settings .filter-anchor {
  display: inline-block;
  padding: 0 6px;
  font-size: 20px;
}

.collapse-plus-btn{
  border: none;
  background: transparent;
}
/* Shop Page Design End */

.full-layer-mid-header .brand-logo-container{ 
  padding: 5px;
  margin: 0;
}
.full-layer-mid-header .brand-logo-container .brand-logo img{ 
  text-align: left !important;
  width: 15.4rem;
}
/* Responsive Design */
@media screen and (max-width: 1199px) {
  .full-layer-mid-header .brand-logo-container .brand-logo img{
    width: 12.5rem;
  }
  .single-item {
    flex: 0 0 calc(15% - 10px); /* Adjust width to 20% per item */
    flex-grow: 1;
  }
  .full-layer-mid-header .custom-header-icons.home{
    display: none;
  }
}

@media screen and (min-width: 577px) and (max-width: 990px) {
  .single-item {
    flex: 0 0 calc(20% - 10px); /* Adjust width to 20% per item */
    flex-grow: 1;
  }
}

@media screen and (max-width: 576px) {
  .breadcrumb-nav ul{
    padding-top: 0 !important;
  }
  .page-content{
    margin-top: 1rem;
  }
  .single-item {
      flex: 0 0 calc(33.33% - 10px); /* 50% width for 2 items per row */
  } 
  .product-detail-page .detail-tabs-wrapper {
    padding-top: 0px;
  }
}

/* Top Category Section End */

/* Responsive mobile device Statr */

@media (max-width: 991px) {  
  .footer{
    padding-bottom: 2.5rem;
  }  
  .default-height {
      height: 175px !important;
  }
  .slider-wrapper .slider-container {
    height: 215px;
  }
  .slider-wrapper .slider-container .slider-item {
    height: 215px;
    padding-left: 1rem;
  }
  .cart-item .cart-icon-group{
    position: absolute;
    left: 0px;
    z-index: 1000;
  }
  .cart-item .cart-icon-group button{
    position: absolute;
    top: -53px;
  }
  .cart-item .cart-image{
    position: relative;
  }
  .cart-item .cart-item-subtotal h4 {
    padding-right: 0.8rem;
  }
  .cart-item .cart-item-content .cart-price del{
    font-size: 12px;
  }
   /* Vendor Store Page Design Start */
   .vendor-products .vendor-header .vendor-content {   
    top: 25px;
    left: 1rem;
    width: 75%;
    /* flex-direction: column;  */
  }
  .vendor-products .vendor-header .vendor-menu{
    margin-top: 1rem;
  }
  /* Vendor Store Page Design End */
}

@media (max-width: 767px) {
  .footer-menu {
    display: block !important;
  }
  .slider-wrapper .slider-container {
    height: 160px;
  }
  .slider-wrapper .slider-container .slider-item {
    height: 150px;
    padding-left: 1rem;
  }

  .flash-sale{
    flex-direction: column;
    width: 100%;
  }

  .flash-sale .flash-title {
    font-size: 1rem;
  }

  .product-detail {
    text-align: left;
  }

  .product-detail .product-title h1{
    font-size: 1rem;
    font-weight: 600;
  }

  .product-detail .short-description.scrollable-section {
    overflow-x: auto; 
    white-space: nowrap; 
  }

  .cart-item .cart-item-subtotal {
    display: none;
  }

  .cart-item .cart-image img{
    width: 70px;
    height: 75px;
  }
  .cart-item .cart-item-content .cart-price del{
    font-size: 11px;
  }

  /* Vendor Store Page Design Start */
  .vendor-products .vendor-header .vendor-content {   
    top: 60px;
    width: 90%;
    /* flex-direction: column;  */
  }
  /* .vendor-products .vendor-header .vendor-menu{
    margin-top: 4rem;
  } */

  
  /* Vendor Store Page Design End */
}

@media (max-width: 575px) { 
  .full-layer-mid-header.scrolled {
    padding: 8px 0px !important;
    box-shadow: 0 5px 7px rgba(0, 0, 0, 0.2);
  }

  .full-layer-mid-header.scrolled .custom-shadow{
    padding-bottom: 0px !important;
    box-shadow: none;
  }

  .header-mini-cart{
    display: none !important;
  }
  .full-layer-mid-header {
    padding: 8px !important;
  }
  .full-layer-mid-header .brand-logo img{
    width: 190px;
    height: 65px;
  }

  /* Vendor Store Page Design Start */
  .vendor-products .vendor-header .vendor-content {   
    top: 60px;
    /* width: 80%; */
    flex-direction: column; 
  }
  .vendor-products .vendor-header .vendor-menu{
    margin-top: 4rem;
  }

  .vendor-products .vendor-header .vendor-content .nav-item {
    margin-bottom: 0;
    padding-bottom: 0;
    margin-top: 0.5rem;
    margin-bottom: 0.2rem;
  }
  
  .vendor-products .vendor-header .vendor-menu .vendor-search-product input{
    display: none;
  }
  /* Vendor Store Page Design End */
}

/* General grid styles */
.product-grid {
  display: grid;
  column-gap: 10px;
  margin: 0 5px 0px !important;
}
.product-grid.list-view{
  gap: 10px;
}
.product-grid.list-view .cart-item{
  border-bottom: 1px solid #DCDCDD;
  border: 1px solid #DCDCDD;
  border-radius: 5px;
  transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
  padding-left: 0.3rem;
  padding-right: 0.3rem;
  background: #fff;
}

.product-grid.list-view .cart-item:hover {
  box-shadow: 0px 4px 10px 2px rgba(0, 0, 0, 0.2);
}
.product-grid.list-view .cart-item .cart-image {
  width: 4.5rem;
}

.shop-page .product-grid.default,
.vendor-products .product-grid.default {
  margin: 0 5px 0px -5px !important;
  grid-template-columns: repeat(4, 1fr); /* 4 columns */
}

.filter_products .list-style .product-grid{
  grid-template-columns: repeat(1, 1fr) !important;
}
.filter_products .list-style .single-product-item .item-content .what-product-is{
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #DCDCDD;
}

.filter_products .list-style .single-product-item .image-container:hover {
  box-shadow: none;
}
.filter_products .list-style .single-product-item .grid-hover-effect {
  display: none;
}
.filter_products .grid-style .single-product-item .list-hover-effect {
  display: none;
}
.filter_products .grid-style .single-product-item .see-more-button{
  display: none;
}

.filter_products .list-style .single-product-item .item-content{
  padding: 0px;
}


/* .filter_products .list-style .single-product-item .item-content .item-description {
  max-height: 60px;
  overflow: hidden;
  transition: max-height 0.3s ease;
  border: 1px solid;
} */

/* .filter_products .list-style .single-product-item .item-content .toggle-btn {
  background: none;
  border: none;
  color: blue;
  cursor: pointer;
  padding: 5px;
  font-size: 14px;
} */

.filter_products .single-product-item .list-hover-effect .add-to-cart, 
.filter_products .single-product-item .list-hover-effect .quick-view{
  transform: translateX(0);
  display: inline-block;
  margin: 10px 4px;
  border: 1px solid #eceff8;
  border-radius: 0;
  padding: 4px 10px;
  transition: all 0.3s ease-in-out;
}

.filter_products .single-product-item .list-hover-effect .add-to-cart:hover, 
.filter_products .single-product-item .list-hover-effect .quick-view:hover{
  background: #d90429;
  color: #fff;
}


.filter_products .list-style .single-product-item .item-description {
  max-height: 60px;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.filter_products .list-style .single-product-item .item-description.expanded {
  max-height: none;
}
.filter_products .list-style .single-product-item .see-more-button{
  font-size: 0.7rem;
  font-weight: 600;
  color: #d90429;
  text-decoration: underline;
}

/* Default for large screens (1200px and above) */
@media (min-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(5, 1fr); /* 5 columns */
  }

  .product-grid.list-view{
    grid-template-columns: repeat(3, 1fr) !important;
  }
  
}

/* For medium screens (992px and above) */
@media (min-width: 992px) and (max-width: 1199px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr); /* 4 columns */
  }

  .product-grid.list-view{
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .top-seller-container .single-item {
    height: 130px !important;
  }
  .top-seller-container .single-item .content {
    top: 60% !important;
    left: 19% !important;
  }

}

/* For tablets (768px and above) */
@media (min-width: 768px) and (max-width: 991px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
  }

  .shop-page .product-grid.default,
  .vendor-products .product-grid.default {
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
  }
  .product-grid.list-view{
    grid-template-columns: repeat(1, 1fr) !important;
  }

  .top-seller-container {
    max-height: 240px;
  }
  .top-seller-container .single-item {
    flex: 1 0 calc(21% - 10px);
    height: 112px !important;
  }
  .top-seller-container .single-item .content {
    top: 50% !important;
    left: 23% !important;
    bottom: auto;
  }
  .top-seller-container .single-item .content h3{
    text-align: left;
  }
  .top-seller-container .single-item .content .thumbnail {
    width: 5rem;
    height: 37px;
  } 

}

/* For small screens (576px and above) */
@media (min-width: 576px) and (max-width: 767px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
  }

  .shop-page .product-grid.default,
  .vendor-products .product-grid.default {
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
  }
  .vendor-products .campaign-product-container .product-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .product-grid.list-view{
    grid-template-columns: repeat(1, 1fr) !important;
  }

  .top-seller-container {
    max-height: 240px;
  }
  .top-seller-container .single-item {
    flex: 1 0 calc(26% - 10px);
    height: 110px !important;
  }
  .top-seller-container .single-item .content {
    top: 50% !important;
    left: 23% !important;
    bottom: auto;
  }
  .top-seller-container .single-item .content h3{
    text-align: left;
  }
  .top-seller-container .single-item .content .thumbnail {
    width: 3rem;
    height: 37px;
  } 

  .newsletter-banner .banner-content {
    /* top: 15%;
    left: 0%;
    padding-left: 2.5rem; */
  }

}

/* For extra small screens (below 576px) */
@media (max-width: 575px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
  } 

  .product-grid.list-view{
    grid-template-columns: repeat(1, 1fr) !important;
  }

  .shop-page .product-grid.default,
  .vendor-products .product-grid.default {
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
  }
  .top-seller-container {
    max-height: 240px;
  }
  .top-seller-container .single-item {
    flex: 1 0 calc(26% - 10px);
    height: 110px !important;
  }
  .top-seller-container .single-item .content {
    top: 50% !important;
    left: 23% !important;
    bottom: auto;
  }
  .top-seller-container .single-item .content h3{
    text-align: left;
  }
  .top-seller-container .single-item .content .thumbnail {
    width: 3rem;
    height: 37px;
  } 

  .footer .newsletter-banner {
    padding: 7rem 0;
  }

  .newsletter-banner .banner-content {
    top: 15%;
    left: 0%;
    padding-left: 2.5rem;
  }
  .newsletter-banner h2 {
    font-size: 1em;
  }
  
  .newsletter-banner h5 {
    font-size: 0.8em;
  }
}

@media screen and (max-width: 395px) {
  .shop-page .page-bar{
    flex-direction: column;
  }
}
/* Responsive mobile device End */

/* Vendor Store Skeleton Styles */
.skeleton-container .skeleton-item {
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.skeleton-box {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 4px;
}

@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* List view skeleton */
.product-grid.list-view .skeleton-item.cart-item {
  padding: 10px;
  align-items: center;
}

.product-grid.list-view .skeleton-item .cart-image.skeleton-box {
  width: 4.5rem;
  height: 4.5rem;
  margin-right: 15px;
  flex-shrink: 0;
}

.product-grid.list-view .skeleton-item .cart-item-content {
  flex-grow: 1;
}

.product-grid.list-view .skeleton-item .skeleton-title {
  width: 70%;
  height: 14px;
  margin-bottom: 8px;
}

.product-grid.list-view .skeleton-item .skeleton-price {
  width: 30%;
  height: 18px;
}

.product-grid.list-view .skeleton-item .cart-quantity .skeleton-box {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

/* Grid view skeleton */
.product-grid .skeleton-item.item {
  display: flex;
  flex-direction: column;
}

.product-grid .skeleton-item .skeleton-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 0;
}

.product-grid .skeleton-item .item-content {
  padding: 10px 12px 14px;
}

.product-grid .skeleton-item .skeleton-title {
  height: 14px;
  width: 100%;
  margin-bottom: 8px;
}

.product-grid .skeleton-item .skeleton-stars {
  height: 12px;
  width: 80px;
  margin-bottom: 10px;
}

.product-grid .skeleton-item .skeleton-price {
  height: 18px;
  width: 55%;
}


