/* Add loader css */
html, body {
  width: 100%;
  overflow-x: hidden;
}
.footer{
  background-color: #ff3130;
}
.full-layer-mid-header{
  display: none !important;
}
.contact-material p{
  font-size: 13px;
}
.contact-material li{
  font-size: 13px;
}
.contact-us-wrapper{
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  .full-layer-outer-header {
    background-color: #ffffff;
  }
}
.brand-logo{
  text-align: center;
}
.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%;
}
.app-brand-logo{
  width: 50%;
}
.full-layer-bottom-header .col-lg-3{
  padding-left: 0;
  padding-right: 0;
}
.full-layer-outer-header .g-nav > li > a{
  color: #ffffff;
}
.full-layer-outer-header .g-nav > li > a:hover{
  color: lightgray;
}
.full-layer-outer-header .u-c-brand{
  color: #ffffff !important;
}
.full-layer-outer-header .u-c-brand:hover{
  color: lightgray !important;
}
.banner-login-section {
    padding: 50px 0;
}

.login-form-wrapper {
    width: 100%;
    margin-left: auto;
    
}
.login-banner{
  width: 100%;
  
}
.bannerclass{
  width: 100%;
  position: relative;
}
/*** Category Item ***/
.cat-title{
    /* word-wrap: break-word; */
    display: block;
    font-size: 14px;
    font-weight: 700;
}
.cat-item {
  background: #FFFFFF;
  transition: .5s;
  border: 1px solid lightgray;
}

.cat-item:hover {
  background: #ff3130;
}

.cat-item img {
  transition: .5s;
}

.cat-item:hover img {
  transform: scale(1.2) rotate(5deg);
}
.overflow-hidden {
  overflow: hidden !important;
}
.flex-fill{
  flex: 1 1 auto !important;
}
/*** Category Item ***/
.product-offer {
  position: relative;
  overflow: hidden;
}

.product-offer img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s;
}

.product-offer:hover img {
  transform: scale(1.2) rotate(5deg);
}

.product-offer .offer-text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(61, 70, 77, 0.5);
  z-index: 1;
}
/* .bg-light {
    background-color: #FFFFFF !important;
} */
 .slider-main .bg-image {
  position: relative;
}

.slider-main .slide-content img {
  width: 100%;
  display: block;
}

.slider-main .slide-content h2 {
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translateY(-50%);
  color: #fff;
  background: rgba(0, 0, 0, 0.5); /* optional for better readability */
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 28px;
  max-width: 40%;
}
.marketplace-section {
  background: linear-gradient(to bottom, #1c1f26, #2a2f38);
  color: #fff;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  color: #ffb400;
  font-size: 32px;
  font-weight: 700;
}

.section-header p {
  font-size: 16px;
  color: #ccc;
}

.marketplace-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.image-box {
  flex: 1 1 40%;
  text-align: center;
}

.image-box img {
  width: 100%;
  max-width: 450px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.features-box {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.feature .icon {
  font-size: 28px;
  color: #4dabf7;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px;
  border-radius: 8px;
  min-width: 50px;
  text-align: center;
}

.feature .text h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 5px;
}

.feature .text p {
  color: #bbb;
  font-size: 15px;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .marketplace-content {
    flex-direction: column;
    text-align: center;
  }

  .feature {
    justify-content: center;
  }

  .feature .icon {
    font-size: 26px;
  }

  .features-box {
    align-items: center;
  }
}
/* Top Sellers */
.top-sellers {
  text-align: center;
  padding: 60px 20px;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.underline {
  width: 100px;
  height: 3px;
  background: #ff6b57;
  margin: 10px auto 40px;
  border-radius: 2px;
}

.seller-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.seller-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  width: 250px;
  text-align: center;
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.seller-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.seller-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.seller-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.seller-card p {
  font-size: 0.9rem;
  color: #555;
  margin: 5px 0;
}

.seller-card i {
  color: #ff6b57;
  margin-right: 6px;
  font-size: 18px;
}

.view-btn {
  display: inline-block;
  background: #ff3130;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 500;
  margin-top: 10px;
  transition: background 0.3s;
}

.view-btn:hover {
  background: #ff543d;
}

/* Responsive */
@media (max-width: 1024px) {
  .seller-container {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .seller-card {
    width: 45%;
  }
}

@media (max-width: 500px) {
  .seller-card {
    width: 100%;
  }
}
@media (max-width: 767px) {
    .banner-login-section {
        margin-top: 130px;
        position: relative;       
        transition: all 0.3s ease-in-out;
    }
}

