body{
  margin: 0;
  padding:0;
}
.elt65656 {
    bottom: 134px;
    right: 33px;
}
.eltgre565{
        font-weight: bold;
    font-size: xxx-large;
}
/*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 */
  .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-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;
    }
    
    .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;
    }
.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;  
}
/* Floating share button */
        .share-btn {
            position: fixed;
            bottom: 225px;
            right: 50px;
            width: 60px;
            height: 60px;
            background-color: #007bff;
            color: white;
            border: none;
            border-radius: 50%;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            font-size: 24px;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            transition: transform 0.3s;
        }

        .share-btn:hover {
            transform: scale(1.1);
        }

        /* Share menu */
        .share-menu {
            position: fixed;
            bottom: 295px;
            right: 60px;
            display: none;
            flex-direction: column;
            gap: 10px;
            z-index: 1000;
        }

        .share-option {
            background-color: #007bff;
            color: white;
            padding: 10px 15px;
            border-radius: 5px;
            text-align: center;
            cursor: pointer;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: background 0.3s, transform 0.3s;
        }

        .share-option:hover {
            background-color: #0056b3;
            transform: scale(1.05);
        }

        .share-option a {
            text-decoration: none;
            color: white;
        }

        /* Tooltip for copy link */
        .tooltip {
            position: absolute;
            bottom: -25px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #28a745;
            color: white;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 12px;
            display: none;
        }

        .tooltip.visible {
            display: block;
        }
    .product-container {
            display: flex;
            flex-direction: row;
            align-items: flex-start;
            gap: 20px;
           height:750px;
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
             
        }
        .thumbnails {
            display: flex;
            flex-direction: column;
            gap: 10px;
                overflow: auto;
    height: 750px;
        }
        .product-details{
              overflow: auto;
    height: 750px;
        }
        .thumbnails img {
            width: 60px;
            height: 60px;
            cursor: pointer;
            border-radius: 5px;
            border: 1px solid #ddd;
            padding: 5px;
        }
        .slider-container {
            position: relative;
            width: 500px;
            height: 500px;
        }
        .slider-container img {
            width: 100%;
            height: 100%;
            border-radius: 10px;
        }
        .prev, .next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            padding: 10px;
            cursor: pointer;
            border-radius: 5px;
        }
        .prev { left: 10px; }
        .next { right: 10px; }
        .product-details {
            flex: 1;
            text-align: left;
        }
        .buy-btn {
            background: #28a745;
            color: white;
            border: none;
            padding: 10px 20px;
            cursor: pointer;
            border-radius: 5px;
            margin-top: 10px;
        }
        
        .variant-tab{
        text-align-last: center;
    text-decoration: none;
    color: black;
}

table {
    overflow-x: auto;
  border-collapse: collapse;
  width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

th,
td {
  border: 1px solid #ddd;
  padding: 15px;
  text-align: left;
  font-size:13px;
}

th {
  background-color: #4CAF50;
  color: #fff;
}

tr:nth-child(even) {
  background-color: #f2f2f2;
}

tr:hover {
  background-color: #ddd;
}

td {
  vertical-align: middle;
}

th:first-child {
  border-top-left-radius: 10px;
}

th:last-child {
  border-top-right-radius: 10px;
}
.desc-img{
    width:100%;
}

.tabs {
  width: 100%;
  margin: 0 auto;
}

.tab-header {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  background: #f2f2f2;
  border-bottom: 1px solid #ccc;
}

.tab {
  padding: 10px;
  cursor: pointer;
}

.tab.active {
  background: #0088cc;
  color: #fff;
}

.tab-content {
  padding: 20px;
  border: 1px solid #ccc;
  border-top: none;
}



.tab-content-active {
  display: block;
}


/*qury section start */
#query-form {
  max-width: 500px;
  margin: 40px auto;
  padding: 20px;
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  animation: fadeIn 1s;
}

#query-form h2 {
  text-align: center;
  margin-bottom: 20px;
  animation: fadeIn 1s;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.qrySubmit {
  background-color: #dc3545;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  animation: pulse 2s infinite;
}

.qrySubmit:hover {
  background-color: #3e8e41;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}



/*qury section ends */

iframe{
    width: 100%;
    height: 100%;
 
}
.eltvid86{
    width: 60px;
       text-align-last: center;
    cursor: pointer;
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 5px;
}
#videlt{
    display:none;
}
.elt8352{
    display:flex;
}
.elt8454{
    width:100px;
    height:100px;
    border-radius:5px;
}
.actual-price {
   
    opacity: 0.5;
    text-decoration: line-through;
  }
  
  .price {
    color: red;
    font-weight: 900;
    font-size: 40px;
  }
/* Popup Styling */
.popup-container {
    display: none; /* Hidden initially */
    position: fixed;
    top: 10%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
}

.popup-content {
       background: white;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-height:60%;
 
    text-align: center;
    position: relative;
    overflow: auto;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
}

/* Offer Categories */
.offer-categories {
    display: flex;
  overflow: auto;
    margin: 10px 0;
        gap: 20px;
            scrollbar-width: none;
    scroll-snap-type: x mandatory;
}
.elt4376{
    color: blue;
    font-size: x-small;
    float: right;
}
        .offer-box {
  background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  padding: 20px;
  margin: 15px 0;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
      width: 180px;
    height: auto;
    min-width: 180px;
}

.offer-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #dfe9f3, #ffffff);
}

.offer-box p {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #2c3e50;
}

.elt94375 {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 10px;
  min-height: 70px;
}

.elt4376 {
  font-size: 0.85rem;
  color: #2980b9;
  font-weight: 500;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.elt4376:hover {
  color: #1c5980;
}
/* Offers List */
#offersList {
    margin-top: 15px;
    text-align: left;
}

/*add to cart div start*/
.quantity-btn {
    width: 30px;
    height: 30px;
    font-size: 20px;
    border: none;
    background-color: white;
    color: black;
    cursor: pointer;
    border-radius: 5px;
        border: solid 1px;
}

.quantity-btn:hover {
    background-color: lightgray;
}

.Subelt3754 {
    width:100%;
    background-color: #dc3545;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
    color:white;
}
.Subelt3754:hover{
    background-color: #a71a28;
}
.inputelt9463{
    width: 50px; text-align: center;
    background-color:#f0f0f0;
    height:20px;
}
.discount-tag{
    background-color:red;
    padding:5px;
    border-radius:5px;
    color:white;
}
.elt4564574{
        width: 50%;
    height: 30px;
    border-radius: 5px;
}
.elt02983{
    height:35px;
    width:35px;
    border-radius:50%;
      border:solid 1px;
          cursor:pointer;
    
}
.elt029683{
        padding: 5px;
    border: solid 1px;
    border-radius: 5px;
    cursor:pointer;
}
.elt65485{
    display: flex;
    gap: 5px;
    overflow: auto;
    margin-top:5px;
}

 .eltmsg56325{
            width: 50%;
    height: 200px;
    text-align: center;
    position: absolute;
    background-color: white;
    border-radius: 5px;
    border: solid 1px;
    right: 25%;
    color: red;
    align-content: center;
    top:65%;
    }
    
    .alarm-btn {
  background-color: transparent;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #666;
  transition: color 0.3s ease;
}

.alarm-btn.active {
  color: gold;
      border-radius: 50px;
}
@media only screen and (max-width: 480px) {
        .elt65656 {
        right: 11px;
    }
    .products-container{
        padding: 20px 0px 20px 10px;
    }
     .product-container {
           height:550px;
        }
        .thumbnails {
                flex-direction: unset;
    height: 550px;
        }
        .product-details{
    height: 550px;
        }
    
    .share-btn {
        right: 25px;
    width: 60px;
    }
    .rating-date-area{
            position: absolute;
    right: 100px;
    }
     .rating-areas{
    margin-left:0;margin-right:0;margin-top:20px;
}
    .product-container{
        margin:0;
        width:auto;
        display:block;
        height:unset;
    }
    .product-images{
        display:none;
        
    }
    .brand_logo{
        display:none;
    }
    .desc-img{
        width:100%;
    }
    .tab-header{
        font-size:x-small;
    }
  
    .slider{
        width:100%;
        height:auto;
    }
    .product-image{
        width:100%;
        padding:0;
        height:280px;
      
    }
    .product-image div img{
       
        width:100%;
        height:auto;
      
  
    }
    .edit-img{
         width:100%;
        height:auto;
    }
    .product_name{
        width:100%;
    }
     .product-details h1{
        font-size:13px;
    }
      #sliderE345{
        position:unset;
    }
    #discountPE649{
        position:unset;
    }
     .thumbnails{
        display:flex;
        height:unset;
          overflow-x: auto;
    white-space: nowrap;
    gap: 10px;

    max-width: 100%;

    scrollbar-color: #ffffff transparent;
    }
    .slider-container {
     height: unset; 
    justify-self: center;
    width:100%;
    }
   
   
.product-details {
    height:unset;
    }
    .elt65485 {
 
    flex-wrap: wrap;
}
.eltgre565{
        font-weight: bold;
    font-size: x-large;
}
}


@media only screen and (min-width: 481px) and (max-width: 768px) {
    .eltgre565{
     
    font-size: x-large;
}
    
        .elt65656 {
        right: 11px;
    }
    .products-container{
        padding: 20px 0px 20px 10px;
    }
    .thumbnails{
            flex-direction: unset;
        display:flex;
        height:unset;
            overflow-x: auto;
    white-space: nowrap;
    gap: 10px;

    max-width: 100%;

    scrollbar-color: #ffffff transparent;
    }
    .slider-container {
     height: unset; 
    justify-self: center;
        width: 480px;
    }
    .share-btn {
        right: 25px;
    width: 60px;
    }
     .rating-date-area{
            position: absolute;
    right: 100px;
    }
    .rating-areas{
    margin-left:0;margin-right:0;margin-top:20px;
}
    .product-container{
        margin:0;
        width:auto;
        display:block;
        height:unset;
    }
    
.product-details {
    height:unset;
    }
    .elt65485 {
 
    flex-wrap: wrap;
}
    .product-images{
        display:none;
        
    }
     .product-image div img{
       
        width:100%;
        height:auto;
      
  
    }
    .brand_logo{
        display:none;
    }
    .desc-img{
        width:100%;
    }
    .tab-header{
        font-size:x-small;
    }

    .slider{
        width:100%;
        height:auto;
    }
    .product-image{
        width:100%;
        padding:0;
      
    }
    .edit-img{
         width:100%;
        height:auto;
    }
    .desc-img{
        width:100%;
    }
    .tab-header{
        font-size:x-small;
    }

    .slider{
        width:100%;
        height:500px;
    }
    .product-image{
        width:100%;
        padding:0;
        height:280px;
      
    }
    .product-image div img{
       
        width:100%;
        height:auto;
      
  
    }
  
    .product_name{
        width:100%;
    }
     .product-details h1{
        font-size:13px;
    }
      #sliderE345{
        position:unset;
    }
    #discountPE649{
        position:unset;
    }
}

@media only screen and (min-width: 769px) and (max-width: 1024px) {
      .product-container {
           height:550px;
        }
        .thumbnails {
    height: 550px;
    display:none;
        }
        .product-details{
    height: 550px;
        }
        .slider-container {
   
    width: 400px;
    height: 400px;
}
        
    .product-image{
        place-self: anchor-center;

    }
    #productPContainer{
        display:unset;
    }
    .product-images{
        display:none;
        
    }
    #sliderE345{
        position:unset;
    }
    #discountPE649{
        position:unset;
    }

}

@media only screen and (min-width: 1025px) and (max-width: 1440px){
     .product-container {
           height:600px;
        }
        .thumbnails {
    height: 600px;
  
        }
        .product-details{
    height: 600px;
        }
      .slider-container {
   
    width: 400px;
    height: 400px;
}

  
    .product-images{
        display:none;
        
    }
    #sliderE345{
        position:unset;
    }
    #discountPE649{
        position:unset;
    }

}

@media (min-width: 1441px) and (max-width: 1920px) {

    #sliderE345{
        position:unset;
    }
    #discountPE649{
        position:unset;
    }

}