main{
    margin-top:170px;
}

    /* General Styles */
.gr836 {
    width: 100%;
    
    background: linear-gradient(135deg, #ece9e6, #ffffff);
    overflow-x: auto;
    white-space: nowrap;
}

.elt328 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    text-transform: uppercase;
    
    animation: fadeIn 1s ease-in-out;
}

.elemnts837 {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 10px;
    
}

.scroll-container {
    display: inline-block;
}
#filters {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-end;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  max-width: 800px;
  margin: 20px auto;
  transition: all 0.3s ease;
}

#filters label {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  color: #333;
  flex: 1 1 150px;
}

#filters input,
#filters select {
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  margin-top: 5px;
  transition: border-color 0.3s ease;
}

#filters input:focus,
#filters select:focus {
  border-color: #007bff;
  outline: none;
}

#filters button {
  padding: 10px 20px;
  background-color: #007bff;
  border: none;
  color: white;
  font-weight: bold;
  font-size: 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#filters button:hover {
  background-color: #0056b3;
}

/* Product Card */
  .best-deals {
      background-color: white;
    }
    
    .deal-countdown {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-bottom: 40px;
    }
    
    .countdown-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      background-color: var(--secondary);
      color: white;
      border-radius: 5px;
      padding: 15px;
      min-width: 70px;
    }
    
    .countdown-number {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 5px;
    }
    
    .countdown-label {
      font-size: 12px;
      text-transform: uppercase;
    }
    
    .deals-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }
    
    .deal-card {
      display: flex;
      background-color: white;
      border-radius: 8px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
      overflow: hidden;
    }
    
    .deal-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .deal-image {
      flex: 0 0 120px;
      background-color: #f5f5f5;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .deal-image img {
      max-width: 100%;
      max-height: 100%;
      object-fit: cover;
    }
    
    .deal-info {
      flex: 1;
      padding: 15px;
      display: flex;
      flex-direction: column;
    }
    
    .deal-info h3 {
      font-size: 16px;
      margin-bottom: 8px;
      font-weight: 600;
    }
    
    .deal-prices {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 10px;
    }
    
    .deal-current-price {
      font-size: 18px;
      font-weight: 700;
      color: var(--primary);
    }
    
    .deal-old-price {
      font-size: 14px;
      color: var(--gray-dark);
      text-decoration: line-through;
    }
    
    .deal-discount {
      display: inline-block;
      background-color: var(--accent-light);
      color: var(--accent);
      font-size: 13px;
      font-weight: 600;
      padding: 3px 8px;
      border-radius: 3px;
    }
    
    .deal-progress {
      margin-top: auto;
    }
    
    .progress-bar {
      height: 6px;
      background-color: var(--gray);
      border-radius: 3px;
      overflow: hidden;
      margin-bottom: 8px;
    }
    
    .progress-fill {
      height: 100%;
      background-color: var(--success);
      border-radius: 3px;
    }
    
    .deal-sold {
      display: flex;
      justify-content: space-between;
      font-size: 13px;
      color: var(--gray-dark);
    }
    .products-container {
      display: flex;
      gap: 12px;
      flex-wrap:wrap;
      padding: 20px;
      width: 97vw;  /* Adjust based on preference */
      max-width: 79%;
      justify-content: center;

    }

    .products-container::-webkit-scrollbar {
      height: 8px;
    }

    .products-container::-webkit-scrollbar-thumb {
      background-color: #bbb;
      border-radius: 10px;
    }

    .product-card {
      width: 240px;
      flex-shrink: 0;  /* Prevents shrinking */
      background-color: white;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      scroll-snap-align: center;
      height: auto;
    }
    
    .product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }
    
    .product-image {
      width: 100%;
      height: 280px;
      position: relative;
    }
    
    .product-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      transition: opacity 0.5s ease;
    }

    .product-image img:nth-child(2) {
      opacity: 0;
    }

    .product-card:hover .product-image img:nth-child(2) {
      opacity: 1;
    }

    .product-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      background-color: #111;
      color: white;
      padding: 4px 10px;
      font-size: 12px;
      font-weight: bold;
      border-radius: 20px;
      text-transform: uppercase;
    }
    
    .product-detailss {
      padding: 20px;
    }
    .elt7456{
        color:white;
    }
    
    .product-brand {
      font-size: 13px;
      color: #777;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 5px;
    }
    
    .product-name {
      font-size: 12px;
      font-weight: bold;
      color: #111;
      margin-bottom: 10px;
      line-height: 1.4;
      margin-block-start: 0;
    margin-block-end: 0;
    max-height: 50px;
    min-height: 50px;
    }
    
    .product-price {
      display: flex;
      align-items: center;
    
    }
    
    .current-price {
      font-size: 20px;
      font-weight: 700;
      color: #dc3545;
    }
    
    .old-price {
      margin-left: 10px;
      font-size: 14px;
      color: #999;
      text-decoration: line-through;
    }
    
    .product-actions {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .add-to-cart {
      background-color: #111;
      color: white;
      border: none;
      padding: 10px 18px;
      border-radius: 25px;
      font-weight: bold;
      font-size: 13px;
      cursor: pointer;
      transition: background-color 0.3s ease;
      flex-grow: 1;
      margin-right: 10px;
    }
    
    .add-to-cart:hover {
      background-color: #333;
    }
    
    .wishlist-button {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 2px solid #ddd;
      background-color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .wishlist-button:hover {
      border-color: #bbb;
      background-color: #f0f0f0;
    }
    
    .heart-icon {
      font-size: 16px;
      color: #555;
    }
     .banner-container {
      width: 100%;
    
      position: relative;
    }
    
    .stripe-banner {
      height: 125px;
      width: 100%;
      position: relative;
      overflow: hidden;
      background: linear-gradient(45deg, #ff6b6b, #ff8e53);
      border-radius: 6px;
      box-shadow: 0 4px 50px rgba(0, 0, 0, 0.15);
    }
    
    .stripes {
      position: absolute;
      top: 0;
      left: 0;
      width: 200%;
      height: 100%;
      background: repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.1) 20px,
        rgba(255, 255, 255, 0.2) 20px,
        rgba(255, 255, 255, 0.2) 40px
      );
      animation: moveStripes 8s linear infinite;
    }
    
    @keyframes moveStripes {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }
    
    .text-container {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    .coming-soon-text {
      color: white;
      font-size: 1.5rem;
      font-weight: bold;
      text-transform: uppercase;
      letter-spacing: 2px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
      0% {
        opacity: 0.8;
        transform: scale(0.98);
      }
      50% {
        opacity: 1;
        transform: scale(1.02);
      }
      100% {
        opacity: 0.8;
        transform: scale(0.98);
      }
    }
    
    /* Shimmer effect */
    .shimmer {
      position: absolute;
      top: 0;
      left: -100%;
      width: 50%;
      height: 100%;
      background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0) 100%
      );
      animation: shimmer 3s infinite;
    }
    
    @keyframes shimmer {
      0% {
        left: -100%;
      }
      100% {
        left: 200%;
      }
    }
.product_shortcuts{
    position:absolute;
    top:0;
    right:0;
    padding:5px;
}
.product_shortcut{
    font-size:20px;
    color:gray;
    padding:5px;
}
  
  

.product-thumb {
  width: 100%;
  height: auto;
}

.hover-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 0.4s;
}

.image-container:hover .hover-image {
  opacity: 1;
}

.product-card {
  margin: 20px;
  scroll-snap-align: center;
  flex: 0 0 250px; /* adjust width */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width:250px;
}

.product-image {
  position: relative;
}

.product-image img {
  width: 100%;
  height: 250px; /* adjust height */
  object-fit: cover;
}
.about_us_script{
   padding:5%;
}
.product-image .discount-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #ff0000;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
}

.product-info {
  padding: 20px;
}

.product-brand {
  font-size: 18px;
  font-weight: bold;
  margin-block-start: 0;
  margin-block-end: 0;
}

.price {
  font-size: 18px;
  color: #000;
}

.actual-price {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
}

.moq {
  font-size: 14px;
  color: #666;
}

.wholesale-price {
  font-size: 16px;
  color: #000;
}

.wholesale-qty {
  font-size: 14px;
  color: #666;
}
.circle-card-container2_links{
        text-decoration: none;
    
}

.card-btn {
  background-color: #ff0000;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
}
#grid-view{
    display:flex;
    flex-wrap:wrap;
}
.col-xs-12{
 border-bottom: solid 1px;
    width: 100%;
    border-top: solid 1px;   
}
.bradcaump-inner{
    margin-left:10px;
    justify-content: left;
}
/*// category circle start */

.categories_name{
    color:white;
}
.categories_name_box{
    color:white;
}
.categories_name_box {
    height:30px;
    width: 80%;
    padding: 10px;
   
    color: black;
    border-radius: 0 0 10px 10px;
    align-content: baseline;
    text-align: center;
}

.categories_name {
    font-size: 18px;
    font-weight: bold;
}
.circle-card-container2{
    text-align: -webkit-center;
}

   
  .slider-container2 {
            position: relative;
            width: 85%;
            margin-top: 30px;
            overflow: auto;
        }

        .slider2 {
            display: flex;
            transition: transform 0.5s;
        }

        .slide2 {
           
            flex: 0 0 100%;
            gap:10px;
            display: flex;
            justify-content: center;
            align-items: center;
            background-size: cover;
            background-position: center;
        }

        .prev-btn2,
        .next-btn2 {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: #fff;
            border: none;
            padding: 10px;
            cursor: pointer;
        }

        .prev-btn2 {
            left: 0;
        }

        .next-btn2 {
            right: 0;
        }

        .circle-card2 {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            overflow: hidden;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background-size: cover;
            background-position: center;
        }

        .circle-card2 img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

        .circle-card2 h2 {
            font-size: 18px;
            font-weight: bold;
            color: #fff;
            text-align: center;
            margin-top: -20px;
        }

        .circle-card2 p {
            font-size: 14px;
            color: #fff;
            text-align: center;
            margin-top: 10px;
        }

        .circle-card2:hover {
            transform: scale(1.1);
            transition: 0.3s;
        }
        
        .category-name2{
              width: 150px;
  overflow-wrap: break-word;
  word-break: break-word;
          }
          
/*// category circle end*/
.filter-container ul{
    list-style-type: none;
}
.results-box{
    display:flex;
    gap:5%;
}
.results{
    width:75%;
}
.product-card{

    padding:5px;
}
@media only screen and (max-width: 480px) {
     .filters{
        display:none;
    }
    .results{
    width:100%;
}
.product-card{
    flex: 0 0 41%;
    margin:0;
    padding:5px;
}
.image-container img{
    height:100%;
}
.product-brand{
    font-size:12px;
}
.product-image .discount-tag{
    padding:2px;
}
.product-info{
    padding:5px;
}
.product-name {
    font-size: 9px;
    
}
.price, .actual-price, .moq, .wholesale-price{
    font-size:10px;
}
main{
    margin-top:150px;
}

    .products-container {
   
      padding: 0;
      max-width:100%;
     

    }
    .product-badge {
  
    font-size: 7px;}
.product-image img {
 
    height: 180px;}
    .product-image {

    height: 180px;}
    .add-to-cart {
    font-size: 7px;}
    .wishlist-button {
    width: 25px;
    height: 25px;}
    
}


@media only screen and (min-width: 481px) and (max-width: 768px) {
    .filters{
        display:none;
    }
    .results{
    width:100%;
}
.product-card{
    flex: 0 0 41%;
    padding:10px;
    margin:0;
}
.image-container img{
    height:100%;
}
.product-brand{
    font-size:12px;
}
.price, .actual-price, .moq, .wholesale-price, .wholesale-qty{
    font-size:10px;
}
.product-brand{
    font-size:12px;
}
main{
    margin-top:150px;
}

    .products-container {
   
      padding: 0;
        max-width:100%;
     

    }
    .product-badge {
  
    font-size: 7px;}
.product-image img {
 
    height: 180px;}
    .product-image {

    height: 180px;}
    .add-to-cart {
    font-size: 7px;}
    .wishlist-button {
    width: 25px;
    height: 25px;}
    
}

@media only screen and (min-width: 769px) and (max-width: 1024px) {
    .product-name {
    font-size: 9px;
    
}
    .product-card{
    flex: 0 0 160px;
    margin:0;
   
}
.image-container img{
    height:100%;
}
.price, .actual-price, .moq, .wholesale-price, .wholesale-qty{
    font-size:10px;
}
.product-brand{
    font-size:12px;
}
.products-container {
padding:0;
    
}
.product-image img {
 
    height: 180px;}
    .product-image {

    height: 180px;}
    .add-to-cart {
    font-size: 7px;}
}

@media only screen and (min-width: 1025px) and (max-width: 1440px){
    .product-name {
    font-size: 9px;
    
}
     .product-card{
    flex: 0 0 180px;
    margin:10px;
   
}
.image-container img{
    height:100%;
}
.price, .actual-price, .moq, .wholesale-price, .wholesale-qty{
    font-size:10px;
}
.product-brand{
    font-size:14px;
}
.products-container {
padding:0;
    
}
.product-image img {
 
    height: 180px;}
    .product-image {

    height: 180px;}
    .add-to-cart {
    font-size: 7px;}

}

@media (min-width: 1441px) and (max-width: 1920px) {

 .product-card{
    flex: 0 0 250px;
    margin:10px;
   
}
.image-container img{
    height:100%;
}
.price, .actual-price, .moq, .wholesale-price, .wholesale-qty{
    font-size:10px;
}
.product-brand{
    font-size:14px;
}

}