   :root {
            --primary: #2563eb;
            --primary-dark: #1d4ed8;
            --primary-light: #3b82f6;
            --primary-lightest: #dbeafe;
            --secondary: #64748b;
            --accent: #f59e0b;
            --success: #10b981;
            --danger: #ef4444;
            --light: #f8fafc;
            --dark: #1e293b;
            --white: #ffffff;
            --gray-100: #f1f5f9;
            --gray-200: #e2e8f0;
            --gray-300: #cbd5e1;
            --gray-400: #94a3b8;
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        
      
        main{
            background: linear-gradient(to bottom, var(--white) 0%, var(--gray-100) 100%);
        }
      
        .section-requirements {
            padding: 5rem 0;
            background: linear-gradient(to bottom, var(--white) 0%, var(--gray-100) 100%);
            position: relative;
            overflow: hidden;
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        }
        
        .container6564 {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.5rem;
            position: relative;
            z-index: 2;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--dark);
        }
        
        .section-subtitle {
            font-size: 1.125rem;
            color: var(--secondary);
            max-width: 800px;
            margin: 0 auto;
        }
        
        .requirements-showcase {
            display: flex;
            align-items: center;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        
        .requirements-content {
            flex: 1;
        }
        
        .requirements-image {
            flex: 1;
            position: relative;
        }
        
        .image-container {
            position: relative;
            box-shadow: var(--shadow-lg);
            border-radius: 0.75rem;
            overflow: hidden;
        }
        
        .image-container img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 0.75rem;
        }
        
        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(37, 99, 235, 0.2) 0%, rgba(37, 99, 235, 0) 100%);
            border-radius: 0.75rem;
        }
        
        .feature-list {
            margin-bottom: 2rem;
        }
        
        .feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.25rem;
        }
        
        .feature-icon {
            width: 22px;
            height: 22px;
            margin-right: 1rem;
            margin-top: 0.25rem;
            color: var(--primary);
        }
        
        .feature-text h3 {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
            color: var(--dark);
        }
        
        .feature-text p {
            color: var(--secondary);
            font-size: 0.975rem;
        }
        
        .cta-button {
            display: inline-flex;
            align-items: center;
            background: var(--primary);
            color: var(--white);
            padding: 0.875rem 1.75rem;
            border-radius: 0.5rem;
            font-weight: 500;
            font-size: 1rem;
            text-decoration: none;
            transition: all 0.2s ease;
            box-shadow: 0 4px 6px rgba(37, 99, 235, 0.25);
        }
        
        .cta-button:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 10px rgba(37, 99, 235, 0.3);
        }
        
        .cta-button svg {
            margin-left: 0.5rem;
        }
        
        .step-container {
            display: flex;
            justify-content: space-between;
            margin-top: 5rem;
            gap: 1.5rem;
        }
        
        .step-card {
            flex: 1;
            background: var(--white);
            border-radius: 0.75rem;
            padding: 1.75rem;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--gray-200);
            position: relative;
            transition: all 0.3s ease;
        }
        
        .step-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
            border-color: var(--primary-lightest);
        }
        
        .step-number {
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary);
            color: var(--white);
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-weight: 600;
            box-shadow: 0 4px 6px rgba(37, 99, 235, 0.25);
        }
        
        .step-title {
            text-align: center;
            margin-top: 0.75rem;
            margin-bottom: 1rem;
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--dark);
        }
        
        .step-description {
            text-align: center;
            color: var(--secondary);
            font-size: 0.95rem;
        }
        
        .decoration-circle {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
            z-index: 1;
        }
        
        .circle-1 {
            width: 300px;
            height: 300px;
            background-color: var(--primary);
            top: 15px;
            left: -50px;
        }
        
        .circle-2 {
            width: 200px;
            height: 200px;
            background-color: var(--primary);
            bottom: -80px;
            right: 15%;
        }
        
        .circle-3 {
            width: 120px;
            height: 120px;
            background-color: var(--accent);
            top: 20%;
            right: -60px;
        }
   
        
        .author-info p {
            color: var(--secondary);
            font-size: 0.875rem;
        }
/*main banners sarts*/
.keywordselt{
    display:none;
}
         .banner-slide_ {
         
         
            width: 100%;
            height: 100%;
            display: none;
        }

        .banner-slide_ a img {
            width: 100%;
            height: 100%;
            /*object-fit: cover;*/
        }

          .prev-slide_,
        .next-slide_ {
            width: 40px;
            height: 40px;
            border: none;
            border-radius: 50%;
            background-color: #fff;
            cursor: pointer;
        }

        .prev-slide_ {
            margin-right: 10px;
        }

        .prev-slide_:hover,
        .next-slide_:hover {
            background-color: #ccc;
        }
        .slider-controls{
        position: absolute;
    top: 18%;
    right: 10px;
}
/*main banners ends*/
       /* category Slider Container */
        .slider-container {
            width: 100%;
       
            margin: auto;
            overflow-x: auto;
            display: flex;
            scroll-snap-type: x mandatory;
            gap: 10px;
            padding: 20px 0;
            scrollbar-width: none; /* Hide scrollbar for Firefox */
        }

        .slider-container::-webkit-scrollbar {
            display: none; /* Hide scrollbar for Chrome, Safari */
        }

        /* Individual Slide */
        .slide {
            flex: 0 0 auto;
            width: 120px;
            text-align: center;
            scroll-snap-align: center;
        }

        /* Circular Image */
        .slide img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #ddd;
            transition: transform 0.3s ease-in-out;
        }

        .slide img:hover {
            transform: scale(1.1);
        }

        /* Category Name */
        .category-name {
            margin-top: 8px;
            font-size: 13px;
            font-weight: bold;
            color: #333;
            white-space: nowrap;
        }
/*category slider ends here   */


  .return_to_top{
        text-align-last: center;
    background-color: black;
    height: 40px;
    align-content: center;
}
.return_to_top a{
        color: white;
    font-weight: bold;
    text-decoration: none;
}
.about_us_script{
    color:#565656;
    padding:25px;
    
}
.mobile_about_anitrade_script{
    display:none;
}

/*recent products sections starts */

/* 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;
}

/* Product Card */
.card728 {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    width: 280px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    position: relative;
    animation: slideUp 0.6s ease-in-out;
    display: inline-block;
    margin-right: 15px;
}

.card728:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.img934 {
    position: relative;
    width: 100%;
    height: 270px;
    overflow: hidden;
}

.img934 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
    transition: opacity 0.3s ease;
}

.img934 .img-hover328 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card728:hover .img-hover328 {
    opacity: 1;
}

.tag936 {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #e63946;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    
}

.badge453 {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #2a9d8f;
    color: white;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 5px;
}

.icon328 {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.8);
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.icon328 i {
    font-size: 20px;
    color: #333;
    transition: color 0.3s ease;
}

.icon328:hover {
    transform: scale(1.2);
}

.icon328 i:hover {
    color: red;
}

/* Product Info */
.info948 {
    padding: 15px;
    
}

.brand742 {
  font-weight: bold;
    color: #222;
    margin-block-end: 0;
    margin-block-start: 0;
}

.price834 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e63946;
}

.old-price621 {
    font-size: 1rem;
    text-decoration: line-through;
    color: #777;
    margin-left: 5px;
}

.moq728, .wholesale-price746, .wholesale-qty863 {
    font-size: 65%;
    color: #444;
    display: block;
    margin-top: 5px;
}
.elt7236{
        font-size: 2rem;
    margin-block-start: 0;
    margin-block-end: 0;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
.lg-453{
  color:blue;  
}

/*// blog containers starts */
      .container {
            max-width: 1200px;
            margin: auto;
        }
        .title {
            font-size: 32px;
            font-weight: bold;
            margin-bottom: 10px;
        }
        .subtitle {
            font-size: 16px;
            color: #666;
            margin-bottom: 40px;
        }
        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }
        .card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        .card-content {
            padding: 20px;
        }
        .category {
            font-size: 14px;
            font-weight: bold;
           
            text-transform: uppercase;
            margin-bottom: 10px;
        }
        .card-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 10px;
        }
        .date {
            font-size: 12px;
            color: #999;
        }
.beauty_grouming {
    display: flex
;
    padding: 2%;
    gap: 2%;
}

.beauty_grouming_left img{
    border-radius:10%;
    padding:5px;
    width:100%;
    height:500px;
}
.beauty_grouming_left_text_heading{
  font-size:30px;  
}
.beauty_grouming_right{
    width:60%;
   
}
.beauty_grouming_left{
    width:36%;
        align-content: end;
   
}

       :root {
      --primary: #0f4c81;
      --primary-light: #e6f0f9;
      --secondary: #2c3e50;
      --accent: #e74c3c;
      --accent-light: #fef5f5;
      --success: #27ae60;
      --gray-light: #f8f9fa;
      --gray: #e9ecef;
      --gray-dark: #6c757d;
      --text: #212529;
            --accent: #7c4dff;
            --light: #f8f9fa;
            --dark: #1a202c;
            --hover-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
            --card-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
    }
    
 .elt7456{
     color:white;
 }
   
  
    

    
    .section-title {
      text-align: center;
      margin-bottom: 40px;
    }
    
    .section-title h2 {
      font-size: 32px;
      font-weight: 700;
      color: var(--secondary);
      margin-bottom: 12px;
      position: relative;
      display: inline-block;
    }
    
    .section-title h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background-color: var(--accent);
    }
    
    .section-title p {
      color: var(--gray-dark);
      max-width: 700px;
      margin: 0 auto;
    }
    
    .btn {
      display: inline-block;
      padding: 12px 24px;
      font-size: 15px;
      font-weight: 600;
      text-decoration: none;
      border-radius: 4px;
      transition: all 0.3s ease;
      cursor: pointer;
    }
    
    .btn-primary {
      background-color: var(--primary);
      color: white;
      border: none;
    }
    
    .btn-primary:hover {
      background-color: #0d3f6c;
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(15, 76, 129, 0.2);
    }
    
    .btn-secondary {
      background-color: white;
      color: var(--primary);
      border: 1px solid var(--primary);
    }
    
    .btn-secondary:hover {
      background-color: var(--primary-light);
      transform: translateY(-2px);
    }
    
 
    /* Categories Section */
    .categories-section {
      background-color: white;
    }
    
    .category-tabs {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-bottom: 30px;
    }
    
    .category-tab {
      padding: 10px 20px;
      font-size: 15px;
      font-weight: 600;
      color: var(--gray-dark);
      background-color: var(--gray-light);
      border: none;
      border-radius: 20px;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .category-tab.active, .category-tab:hover {
      background-color: var(--primary);
      color: white;
    }
    
    .categories-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 20px;
    }
    
    .category-card {
      background-color: white;
      border-radius: 8px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
      overflow: hidden;
      transition: all 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 20px;
      text-decoration: none;
      color: var(--text);
    }
    
    .category-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .category-icon {
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background-color: var(--primary-light);
      margin-bottom: 15px;
      color: var(--primary);
      font-size: 24px;
    }
    
    .category-card h3 {
      font-size: 16px;
      margin-bottom: 5px;
    }
    
    .category-card p {
      font-size: 14px;
      color: var(--gray-dark);
    }
    
    /* Featured Products */
    .featured-products {
      background-color: var(--gray-light);
    }
    
    .products-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 30px;
    }
    
    .product-filters {
      display: flex;
      gap: 15px;
    }
    
    .filter-btn {
      padding: 8px 16px;
      background-color: white;
      border: 1px solid var(--gray);
      border-radius: 4px;
      font-size: 14px;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .filter-btn.active, .filter-btn:hover {
      background-color: var(--primary);
      color: white;
      border-color: var(--primary);
    }
    
    .products-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 25px;
    }
    
    .product-card {
      background-color: white;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
    }
    
    .product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .product-image {
      height: 200px;
      background-color: #f5f5f5;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
    
    .product-image img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
    }
    
    .product-tag {
      position: absolute;
      top: 10px;
      left: 10px;
      padding: 5px 10px;
      font-size: 12px;
      font-weight: 600;
      border-radius: 3px;
    }
    
    .tag-new {
      background-color: var(--accent);
      color: white;
    }
    
    .tag-sale {
      background-color: var(--success);
      color: white;
    }
    
    .product-info {
      padding: 15px;
    }
    
    .product-info h3 {
      font-size: 16px;
      margin-bottom: 8px;
      font-weight: 600;
      color: var(--secondary);
    }
    
    .product-category {
      font-size: 13px;
      color: var(--gray-dark);
      margin-bottom: 10px;
    }
    
    .product-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 10px;
      border-top: 1px solid var(--gray);
    }
    
    .product-price {
      font-weight: 700;
      color: var(--primary);
    }
    
    .min-order {
      font-size: 13px;
      color: var(--gray-dark);
    }
    
    /* Featured Stores */
    .stores-section {
      background-color: white;
    }
    
    .stores-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 25px;
    }
    
    .store-card {
      background-color: white;
      border-radius: 8px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
      overflow: hidden;
      transition: all 0.3s ease;
    }
    
    .store-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .store-banner {
      height: 100px;
      background-color: var(--primary-light);
      position: relative;
    }
    
    .store-logo {
      position: absolute;
      width: 70px;
      height: 70px;
      background-color: white;
      border-radius: 50%;
      bottom: -35px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      align-items: center;
      justify-content: center;
      border: 4px solid white;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .store-logo img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      border-radius: 50%;
    }
    
    .store-info {
      padding: 45px 15px 15px;
      text-align: center;
    }
    
    .store-info h3 {
      font-size: 18px;
      margin-bottom: 5px;
      font-weight: 600;
    }
    
    .store-info p {
      font-size: 13px;
      color: var(--gray-dark);
      margin-bottom: 15px;
    }
    
    .store-rating {
      display: flex;
      justify-content: center;
      gap: 3px;
      margin-bottom: 15px;
      color: #f39c12;
    }
    
    .store-stats {
      display: flex;
      justify-content: space-around;
      font-size: 13px;
      color: var(--gray-dark);
    }
    
    /* Blog Section */
    .blog-section {
      background-color: var(--gray-light);
    }
    
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }
    
    .blog-card {
      background-color: white;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
    }
    
    .blog-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .blog-image {
      height: 200px;
      overflow: hidden;
    }
    
    .blog-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: all 0.5s ease;
    }
    
    .blog-card:hover .blog-image img {
      transform: scale(1.1);
    }
    
    .blog-content {
      padding: 20px;
    }
    
    .blog-date {
      font-size: 13px;
      color: var(--gray-dark);
      margin-bottom: 10px;
    }
    
    .blog-content h3 {
      font-size: 18px;
      margin-bottom: 10px;
      font-weight: 600;
      line-height: 1.4;
    }
    
    .blog-content p {
      font-size: 14px;
      color: var(--gray-dark);
      margin-bottom: 15px;
    }
    
    .read-more {
      color: var(--primary);
      font-weight: 600;
      text-decoration: none;
      font-size: 14px;
      display: inline-flex;
      align-items: center;
    }
    
    .read-more:after {
      content: '→';
      margin-left: 5px;
      transition: all 0.3s ease;
    }
    
    .read-more:hover:after {
      margin-left: 8px;
    }
    
    /* Best Deals */
    .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;
      overflow-x: auto;
      scrollbar-width: none; 
      padding: 20px;
      width: 97vw;  /* Adjust based on preference */
      max-width: 100%;
      scroll-snap-type: x mandatory;  /* Smooth scrolling */
    }

    .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-details {
      padding: 20px;
    }
    
    .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;
    }
    
    .ratings {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
    }
    
    .stars {
      color: #ffc107;
      font-size: 14px;
      margin-right: 5px;
    }
    
    .review-count {
      font-size: 13px;
      color: #777;
    }
     /* Categories Section */
    .categories-section {
      background-color: white;
    }
    
    .category-tabs {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-bottom: 30px;
    }
    
    .category-tab {
      padding: 10px 20px;
      font-size: 15px;
      font-weight: 600;
      color: var(--gray-dark);
      background-color: var(--gray-light);
      border: none;
      border-radius: 20px;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .category-tab.active, .category-tab:hover {
      background-color: var(--primary);
      color: white;
    }
    
    .categories-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 20px;
    }
    
    .category-card {
      background-color: white;
      border-radius: 8px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
      overflow: hidden;
      transition: all 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 20px;
      text-decoration: none;
      color: var(--text);
    }
    
    .category-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .category-icon {
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background-color: var(--primary-light);
      margin-bottom: 15px;
      color: var(--primary);
      font-size: 24px;
    }
    
    .category-card h3 {
      font-size: 16px;
      margin-bottom: 5px;
    }
    
    .category-card p {
      font-size: 14px;
      color: var(--gray-dark);
    }
      
      .containerelt65 {
          
            margin: 0 5%;
    
        }
        /* Style tabs for different category views */
        .view-options {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
        }
        
        .view-tab {
            padding: 10px 25px;
            border: none;
            background: none;
            font-size: 1rem;
            font-weight: 600;
            color: var(--gray);
            cursor: pointer;
            position: relative;
            transition: var(--transition);
        }
        
        .view-tab.active {
            color: var(--accent);
        }
        
        .view-tab.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 25%;
            width: 50%;
            height: 3px;
            background: var(--accent);
            border-radius: 3px;
        }
        
        .view-tab:hover {
            color: var(--accent);
        }
        
        /* Category display options */
        .category-view {
            display: none;
        }
        
        .category-view.active {
            display: block;
            animation: fadeIn 0.6s ease forwards;
        }
        
        /* Grid View */
        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .category-card {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
            transition: var(--transition);
            cursor: pointer;
            aspect-ratio: 4/3;
        }
        
        .category-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--hover-shadow);
        }
        
        .category-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            transition: var(--transition);
        }
        
        .category-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .category-card:hover .category-image img {
            transform: scale(1.05);
        }
        
        .category-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 30px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 100%);
            color: white;
            transition: var(--transition);
        }
        
        .category-card:hover .category-overlay {
            padding-bottom: 40px;
        }
        
     
        
        .category-name i {
            font-size: 1.3rem;
            color: var(--accent);
        }
        
        .category-stats {
            display: flex;
            align-items: center;
            gap: 20px;
            font-size: 0.95rem;
            opacity: 0.9;
            margin-bottom: 15px;
        }
        
        .stat {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .category-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 15px;
            opacity: 0;
            transform: translateY(10px);
            transition: var(--transition);
        }
        
        .category-card:hover .category-tags {
            opacity: 1;
            transform: translateY(0);
        }
        
        .tag {
            padding: 5px 10px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            font-size: 0.8rem;
            backdrop-filter: blur(5px);
        }
        
        /* List View */
        .categories-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .category-list-item {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            display: flex;
            box-shadow: var(--card-shadow);
            transition: var(--transition);
            cursor: pointer;
        }
        
        .category-list-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--hover-shadow);
        }
        
        .category-list-image {
            width: 180px;
            min-height: 140px;
            overflow: hidden;
        }
        
        .category-list-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .category-list-item:hover .category-list-image img {
            transform: scale(1.05);
        }
        
        .category-list-content {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .category-list-name {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--dark);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .category-list-name i {
            color: var(--accent);
        }
        
        .category-list-desc {
            
            font-size: 0.95rem;
            line-height: 1.5;
            margin-bottom: 15px;
        }
        
        .category-list-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .category-list-stats {
            display: flex;
            gap: 20px;
        }
        
        .category-list-stat {
            display: flex;
            align-items: center;
            gap: 6px;
          
            font-size: 0.9rem;
        }
        
        .category-explore {
            display: flex;
            align-items: center;
            gap: 5px;
            color: var(--accent);
            font-weight: 600;
            font-size: 0.95rem;
            transition: var(--transition);
        }
        
        .category-explore i {
            transition: var(--transition);
        }
        
        .category-list-item:hover .category-explore i {
            transform: translateX(5px);
        }
        
        /* Featured Categories */
        .featured-category {
            position: relative;
            height: 400px;
            border-radius: 20px;
            overflow: hidden;
            margin-bottom: 30px;
            box-shadow: var(--card-shadow);
        }
        
        .featured-category img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .featured-content {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 60px 40px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
            color: white;
        }
        
        .featured-badge {
            display: inline-block;
            padding: 6px 15px;
            background: var(--accent);
            border-radius: 20px;
            color: white;
            font-weight: 600;
            font-size: 0.85rem;
            margin-bottom: 15px;
        }
        
        .featured-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 10px;
        }
        
        .featured-desc {
            font-size: 1.1rem;
            max-width: 600px;
            margin-bottom: 25px;
            opacity: 0.9;
            line-height: 1.6;
        }
        
        .featured-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: white;
            color: var(--dark);
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .featured-button:hover {
            background: var(--accent);
            color: white;
            transform: translateY(-3px);
        }
        
        /* Search and filter */
        .category-controls {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }
        
        .search-box {
            position: relative;
            width: 300px;
        }
        
        .search-box input {
            width: 90%;
            padding: 12px 20px;
            padding-left: 45px;
            border: none;
            border-radius: 30px;
            background: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            font-size: 1rem;
            transition: var(--transition);
        }
        
        .search-box input:focus {
            outline: none;
            box-shadow: 0 5px 20px rgba(124, 77, 255, 0.2);
        }
        
        .search-box i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gray);
        }
        
        .filter-options {
            display: flex;
            gap: 15px;
        }
        
        .filter-button {
            padding: 10px 20px;
            border: 1px solid #e2e8f0;
            border-radius: 30px;
            background: white;
            color: var(--gray);
            font-size: 0.95rem;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .filter-button:hover {
            border-color: var(--accent);
            color: var(--accent);
        }
        
        .filter-button.active {
            background: var(--accent);
            color: white;
            border-color: var(--accent);
        }
        
        /* Animation */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* Responsive adjustments */
        @media (max-width: 1200px) {
            .categories-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            .categories-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
                gap: 20px;
            }
            
            .category-list-item {
                flex-direction: column;
            }
            
            .category-list-image {
                width: 100%;
                height: 180px;
            }
            
            .category-controls {
                flex-direction: column;
                gap: 20px;
                align-items: stretch;
            }
            
            .search-box {
                width: 100%;
            }
            
            .filter-options {
                overflow-x: auto;
                padding-bottom: 10px;
            }
            
            .featured-title {
                font-size: 2rem;
            }
            
            .featured-desc {
                font-size: 1rem;
            }
        }
    /* Responsive Design */
    @media (max-width: 1200px) {
      .categories-grid {
        grid-template-columns: repeat(4, 1fr);
      }
      
      .products-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      
      .stores-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }
    
    @media (max-width: 991px) {
        .container {
      padding: 0;
    }
           .steps-container {
      flex-direction: column;
      gap: 40px;
    }
    
    .step-card {
      width: 100%;
      max-width: 350px;
    }
    
    .step-arrow {
      transform: rotate(90deg);
    }
    
    .testimonials-grid,
    .indicators-grid,
    .insights-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .solution-content {
      flex-direction: column;
    }
    
    .cta-content {
      flex-direction: column;
      text-align: center;
    }
        .products-container{
        width:97vw;
    }
      .hero-slide {
        padding: 0 30px;
      }
      
      .hero-slide-text h1 {
        font-size: 32px;
      }
      
      .categories-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      
      .products-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .stores-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .blog-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .deals-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    @media (max-width: 767px) {
         .testimonials-grid,
    .indicators-grid,
    .insights-grid {
      grid-template-columns: 1fr;
    }
    
    .solutions-tabs {
      overflow-x: auto;
      justify-content: flex-start;
      padding-bottom: 10px;
    }
      .hero-banner-content {
        flex-direction: column;
        gap: 20px;
      }
      
      .hero-carousel {
        height: 400px;
      }
      
      .hero-slide {
        flex-direction: column;
        text-align: center;
        padding: 30px;
      }
      
      .hero-slide-text {
        max-width: 100%;
      }
      
      .product-filters {
        display: none;
      }
      
      .categories-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .blog-grid {
        grid-template-columns: 1fr;
      }
      
      .deals-grid {
        grid-template-columns: 1fr;
      }
    }
    
    @media (max-width: 480px) {
        .product-card {
    width: 170px;}
    .product-image {
    width: 100%;
    height: 180px;}
        .search-box input {
    width: 85%;}
    .featured-content {
        
        padding:0;
    }
    
      .products-grid, 
      .stores-grid {
        grid-template-columns: 1fr;
      }
      
      .categories-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .category-tabs {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 10px;
      }
      
      .deal-countdown {
        flex-wrap: wrap;
      }
    }
      /* How It Works Section */
  .how-it-works-section {
    background-color: white;
    padding: 70px 0;
  }
  
  .steps-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 50px 0;
  }
  
  .step-card {
    background-color: var(--gray-light);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    width: 30%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
  }
  
  .step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
  }
  
  .step-icon {
    font-size: 36px;
    margin-bottom: 15px;
  }
  
  .step-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--secondary);
  }
  
  .step-card p {
    color: var(--gray-dark);
    font-size: 14px;
  }
  
  .step-arrow {
    color: var(--primary);
    font-size: 24px;
    font-weight: 700;
  }
  
  .cta-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
  }
  
  /* Testimonials Section */
  .testimonials-section {
    background-color: var(--primary-light);
    padding: 70px 0;
  }
  
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
  }
  
  .testimonial-card {
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }
  
  .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .testimonial-quote {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
  }
  
  .testimonial-quote::before {
    content: '"';
    font-size: 40px;
    color: var(--primary);
    position: absolute;
    left: -5px;
    top: -10px;
    opacity: 0.5;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
  }
  
  .author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .author-info h4 {
    font-size: 16px;
    margin-bottom: 3px;
    font-weight: 600;
  }
  
  .author-info p {
    font-size: 13px;
    color: var(--gray-dark);
  }
  
  /* Trust Indicators Section */
  .trust-indicators {
    background-color: white;
    padding: 70px 0;
  }
  
  .indicators-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
  }
  
  .indicator-card {
    background-color: var(--gray-light);
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
  }
  
  .indicator-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .indicator-icon {
    font-size: 36px;
    margin-bottom: 15px;
  }
  
  .indicator-card h3 {
    font-size: 18px;
    color: var(--secondary);
    margin-bottom: 10px;
  }
  
  .indicator-card p {
    font-size: 14px;
    color: var(--gray-dark);
  }
  
  .certifications {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
  }
  
  .cert-item {
    height: 40px;
    opacity: 0.8;
    transition: all 0.3s ease;
  }
  
  .cert-item:hover {
    opacity: 1;
  }
  
  .cert-item img {
    height: 100%;
    object-fit: contain;
  }
  
  /* Industry Solutions Section */
  .industry-solutions {
    background-color: var(--gray-light);
    padding: 70px 0;
  }
  
  .solutions-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 30px 0;
    flex-wrap: wrap;
  }
  
  .solution-tab {
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-dark);
    background-color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .solution-tab.active, .solution-tab:hover {
    background-color: var(--primary);
    color: white;
  }
  
  .solution-content {
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  }
  
  .solution-info {
    flex: 1;
  }
  
  .solution-info h3 {
    font-size: 24px;
    color: var(--secondary);
    margin-bottom: 15px;
  }
  
  .solution-info p {
    margin-bottom: 20px;
    color: var(--gray-dark);
  }
  
  .solution-features {
    padding-left: 20px;
    margin-bottom: 25px;
  }
  
  .solution-features li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
  }
  
  .solution-features li::before {
    content: '•';
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
  }
  
  .solution-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
  }
  
  .solution-image img {
    width: 100%;
    height: auto;
    transition: all 0.5s ease;
  }
  
  .solution-image:hover img {
    transform: scale(1.05);
  }
  
  /* CTA Banner */
  .cta-banner {
    background-color: var(--secondary);
    padding: 60px 0;
    color: white;
  }
  
  .cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
  }
  
  .cta-text {
    flex: 2;
  }
  
  .cta-text h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }
  
  .cta-text p {
    font-size: 16px;
    opacity: 0.9;
  }
  
  .cta-buttons {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .cta-banner .btn-primary {
    background-color: var(--accent);
  }
  
  .cta-banner .btn-primary:hover {
    background-color: #c0392b;
  }
  
  .cta-banner .btn-secondary {
    background-color: transparent;
    color: white;
    border: 1px solid white;
  }
  
  .cta-banner .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  
  /* Market Insights Section */
  .market-insights {
    background-color: white;
    padding: 70px 0;
  }
  
  .insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
  }
  
  .insight-card {
    background-color: var(--gray-light);
    border-radius: 8px;
    padding: 25px;
    transition: all 0.3s ease;
  }
  
  .insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .insight-tag {
    display: inline-block;
    background-color: var(--primary-light);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 3px;
    margin-bottom: 15px;
  }
  
  .insight-card h3 {
    font-size: 18px;
    color: var(--secondary);
    margin-bottom: 10px;
    line-height: 1.4;
  }
  
  .insight-card p {
    font-size: 14px;
    color: var(--gray-dark);
    margin-bottom: 15px;
  }
  
  .webinar-date {
    font-size: 13px;
    color: var(--accent);
    margin-bottom: 15px;
    font-weight: 600;
  }
  


@media only screen and (max-width: 480px) {
    .beauty_grouming_left{
        display:none;
    }
    .beauty_grouming_right {
    width: 100%;
}
.beauty_grouming {

    padding: 5px;
}
.mobile_about_anitrade_script{
    display:block;
}
.about_us_script{
    display:none;
    padding:10px;
}

.slider-controls{
        position: absolute;
    top: 15%;
    right: 10px;
}
 .prev-slide_,
        .next-slide_ {
            width: 30px;
            height: 30px;
            
        }
 .slide img {
            width: 50px;
            height: 50px;
           
        }
        .slide {
            
            width: 60px;
           
        }
        .category-name {
           
            font-size: 8px;
           
        }
        
        /*recent view product*/
        .gr836 {
            padding:0;
        }

.card728 {
   
    width: 175px;}
    .img934 {
    
    height: 175px;}
    .scroll-container  {
   
    margin-left: 10px;}
    .tag936 {
    font-size: 7px;}
    .brand742 {
    
    font-size: x-small;}
    .moq728, .wholesale-price746, .wholesale-qty863 {
    font-size: x-small;}
    .elt328 {
    font-size: 1rem;
       text-align: unset;
    margin-left: 10px;}
    .old-price621 {
    font-size: 0.5rem;}
    .price834 {
    font-size: 1rem;}
      .elt7236 {
    font-size: unset;}
    .section-title {
    font-size: 1.5rem;}
     .requirements-showcase {
                flex-direction: column;
            }
            
            .requirements-content {
                order: 2;
            }
            
            .requirements-image {
                order: 1;
                margin-bottom: 2rem;
            }
            
            .step-container {
                flex-direction: column;
            }
            
            .step-card {
                margin-bottom: 2rem;
            }
            
            .step-number {
                top: -15px;
                left: 20px;
                transform: none;
            }
}


@media only screen and (min-width: 481px) and (max-width: 768px) {
    .elt7236 {
    font-size: unset;}
    .section-title {
    font-size: 1.5rem;}
      .requirements-showcase {
                flex-direction: column;
            }
            
            .requirements-content {
                order: 2;
            }
            
            .requirements-image {
                order: 1;
                margin-bottom: 2rem;
            }
            
            .step-container {
                flex-direction: column;
            }
            
            .step-card {
                margin-bottom: 2rem;
            }
            
            .step-number {
                top: -15px;
                left: 20px;
                transform: none;
            }
        .beauty_grouming_left{
        display:none;
    }
    .beauty_grouming_right {
    width: 100%;
}
.beauty_grouming {

    padding: 5px;
}
    .mobile_about_anitrade_script{
    display:block;
}
    .about_us_script{
    display:none;
    padding:2px;
}
.slider-controls{
        position: absolute;
    top: 15%;
    right: 10px;
}
 .prev-slide_,
        .next-slide_ {
            width: 30px;
            height: 30px;
         
        }
         .slide img {
            width: 50px;
            height: 50px;
          
        }
         .slide {
            
            width: 60px;
           
        }
         .category-name {
           
            font-size: 8px;
           
        }
        /*recent product card*/
            .gr836 {
            padding:0;
        }

.card728 {
   
    width: 175px;}
    .img934 {
    
    height: 175px;}
    .scroll-container  {
   
    margin-left: 10px;}
    .tag936 {
    font-size: 7px;}
    .brand742 {
    
    font-size: x-small;}
    .moq728, .wholesale-price746, .wholesale-qty863 {
    font-size: x-small;}
    .elt328 {
    font-size: 1rem;
       text-align: unset;
    margin-left: 10px;}
    .old-price621 {
    font-size: 0.5rem;}
    .price834 {
    font-size: 1rem;}
    
  
}

@media only screen and (min-width: 769px) and (max-width: 1024px) {
      .slide img {
            width: 60px;
            height: 60px;
          
        }
      .slide {
            
            width: 60px;
           
        }
         .category-name {
           
            font-size: 8px;
           
        }
         /*recent view product*/
        .gr836 {
            padding:0;
        }

.card728 {
   
    width: 200px;}
    .img934 {
    
    height: 200px;}
   .scroll-container {
   
    margin-left: 10px;}
    .tag936 {
    font-size: 7px;}
    .brand742 {
    
    font-size: x-small;}
    .moq728, .wholesale-price746, .wholesale-qty863 {
    font-size: x-small;}
    .elt328 {
    font-size: 1rem;
       text-align: unset;
    margin-left: 10px;}
    .old-price621 {
    font-size: 0.5rem;}
    .price834 {
    font-size: 1rem;}
  
}
@media (min-width: 1025px) and (max-width: 1440px) {
       /*recent view product*/
        .gr836 {
            padding:0;
        }

.card728 {
   
    width: 250px;}
    .img934 {
    
    height: 250px;}
    .scroll-container  {
   
    margin-left: 10px;}
    .tag936 {
    font-size: 7px;}
    .brand742 {
    
    font-size: medium;}
    .moq728, .wholesale-price746, .wholesale-qty863 {
    font-size: medium;}
    .elt328 {
    font-size: 1rem;
       text-align: unset;
    margin-left: 10px;}
    .old-price621 {
    font-size: 0.5rem;}
    .price834 {
    font-size: 1rem;}

}
@media (min-width: 1441px) and (max-width: 1920px) {

}