.sellor-grid-image {
    height: 180px;
    width: 100%;
    object-fit: contain;
}

.variant-container {
    display: flex;
    align-items: end;
    gap: 20px;
}

.variant-radio-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.variant-radio-container input[type="radio"] {
    visibility: hidden;
    height: 0;
    width: 0;
}

.variant-radio-container label {
    display: flex;
    flex: auto;
    vertical-align: middle;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    border: 2px solid;
    border-color: #e0e0e0;
    padding: 5px 10px;
    transition: color --transition-fast ease-out,
        border-color --transition-fast ease-in;
    user-select: none;
    margin-right: 8px;
}

.variant-radio-container label:last-of-type {
    margin-right: 0;
}

.variant-radio-container input[type="radio"]:checked + label {
    border-color: #d7182a;
    color: #d7182a;
}

.variant-radio-container input[type="radio"]:not(:checked):hover + label {
    border-color: #d7182a;
    color: #d7182a;
}

@media only screen and (max-width: 991px) {
    .ec-product-inner .ec-pro-image .ec-pro-actions .add-to-cart {
        bottom: 36px;
    }

    .ec-product-inner .ec-pro-image .ec-pro-actions .ec-btn-group {
        width: 35px;
        height: 35px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1450px) {
    .ec-product-inner .ec-pro-image .ec-pro-actions .ec-btn-group {
        width: 45px;
        height: 45px;
    }
}


@media (min-width: 992px) {
    .responsive-banner {
      height: 350px; /* or whatever you want */
    }
  }

@media only screen and (max-width: 767px) {
    .ec-login-wrapper .ec-login-container .ec-login-form .btn {
        width: 100%
    }
}

@media only screen and (max-width: 575px){
    .ec-register-wrapper .ec-register-container .ec-register-form .ec-register-wrap i{
        position: absolute;
        top: 60%;
    }
    .seller-profile{
        padding: 0px 15px;
    }
}

@media only screen and (min-width: 576px){
    .ec-register-wrapper .ec-register-container .ec-register-form .ec-register-wrap i{
        position: absolute;
        top: 70%;
    }
    .couponform{
        width: 50%;
    }.ec-register-wrapper{
        width: 75%;
    }
}

@media only screen and (max-width: 575px){
    .ec-register-wrapper{
        width: 90%;
    }
}

@media only screen and (max-width: 575px){

.ec-sidebar-wrap .ec-sidebar-block {
    padding: 0px;
}
.checckoutdesc{
    font-size: 15;
}
.checkout_page .ec-checkout-wrap{
    padding: 20px;
}
.couponform{
    width: 100%;
}
.ec-vendor-dashboard .ec-vendor-dashboard-card .ec-vendor-card-body,
.ec-vendor-uploads .ec-vendor-dashboard-card .ec-vendor-card-body {
    padding: 15px;
}
}

.ec-vendor-block-items ul li{
    font-size: 18px;
}

.ec-vendor-block-items ul li:hover {
    background-color: #feeced;
    color: #d7182a;
   
}


.sidebar-item {
    transition: background-color 0.3s ease, color 0.3s ease;
}

.sidebar-item:hover {
    background-color: #f0f0f0;
    color: #007bff;
    cursor: pointer;
}

.sidebar-item svg {
    transition: transform 0.3s ease;
}

.sidebar-item:hover svg {
    transform: scale(1.1);
}

.social-icon {
    display:flex;
    align-items: center;
    justify-content: center;
    width: 25px; /* adjust as needed */
    height: 25px;
    font-size: 18px;
    border-radius: 6px;
    color: white;
    text-decoration: none;
}
.social-icon:hover{
    color: white;
}

.social-icon.facebook {
    background-color: #3b5998;
}

.social-icon.twitter {
    background-color: #1da1f2;
}

.social-icon.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
    color: white;
}

.social-icon.whatsapp {
    background-color: #25d366;
}

.social-icon.link-copy {
    background-color: #6c757d;
}

.responsive-banner {
  object-fit: contain; /* default for mobile and tablet */
}

@media (min-width: 992px) {
  /* Laptop and up */

  .banner-container {
    height: 300px !important;
  }
  .responsive-banner {
     width: 100%;
     height: 100%;
    object-fit: cover;
  }
}

.text-truncate-custom {
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Limit to 3 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}



