
.nav-tabs {
  border-bottom: 2px solid #f0f0f0!important;
  padding-left: 0!important;
  margin-bottom: -15px!important;
  display: flex!important;
  justify-content: flex-start!important;
}

.nav-tabs .nav-link {
  border: none!important;
  border-radius: 10px!important;
  color: #444!important;
  font-weight: 500!important;
  margin-top: 2px;
  padding: 8px 16px!important;
  background-color: transparent!important;
  transition: color 0.4s ease, background-color 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease!important;
}

.nav-tabs .nav-link:hover {
  color: #ff6600 !important;  
  background-color: rgba(255, 102, 0, 0.15) !important; 
  transform: translateY(-3px) !important;
  box-shadow: 0 4px 8px rgba(255, 102, 0, 0.2) !important; 
  transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease !important;
}

.nav-tabs .nav-link.active {
  color: #fff!important;
  background: linear-gradient(45deg, #ff6600, #ff8533)!important; 
  border-radius: 10px!important;
  font-weight: 700!important;
  padding: 8px 16px!important;
  transform: translateY(-2px)!important;
}

.scrolling-tabs::-webkit-scrollbar {
  display: none;
}

.scrolling-tabs {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-wrap: nowrap;
  padding-bottom: 8px;
}

    .carousel-arrow {
        position: absolute;
        top: 50% !important;
        transform: translateY(-50%);
        background: #ff6600;
        border: none;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        z-index: 10;
        color: #fff;
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.25s ease;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
        opacity: 0.95;
        padding-left: 0px;
        padding-right: 0px;
    }

    .carousel-arrow:hover {
        background: #e65800;
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 5px 12px rgba(0, 0, 0, 0.3);
        opacity: 1;
    }

    .carousel-arrow:active {
        transform: translateY(-50%) scale(0.95);
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    }

    .left-arrow {
        left: 10px;
    }

    .right-arrow {
        right: 10px;
    }

    .carousel-arrow i {
        font-size: 16px;
        transition: transform 0.3s ease;
    }

    .carousel-arrow:hover i {
        transform: scale(1.1);
    }
    #main-image {
        max-height: 200px;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .swal2-cancel {
    background-color: #dc3545 !important; 
    border-color: #dc3545 !important; 
    color: white !important;
}

.swal2-confirm {
    background-color: #28a745 !important;
    border-color: #28a745 !important; 
    color: white !important; 
}

.seller-info-card {
    background-color: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.seller-image {
    width: 55px;
    height: 55px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #f0f0f0;
}

.seller-info {
    margin-left: 15px;
    flex-grow: 1;
}

.seller-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 3px;
}
.seller-link, .store-link {
        color: #333;
    text-decoration: none; 
    transition: color 0.3s ease; 
}

.seller-link:hover, .store-link:hover {
    text-decoration: none; 
}

.store-name {
    font-size: 14px;
    color: #777;
    margin-bottom: 5px;
}

.seller-status {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 10px;
}

.seller-status.verified {
    color: #28a745;
}

.seller-status.unverified {
    color: #dc3545;
}

.btn-message {
    font-size: 12px;
    padding: 6px 12px;
    background-color: #007bff;
    color: white;
    border-radius: 25px;
    text-decoration: none;
    border: 2px solid #007bff;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.btn-message:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.description {
    font-size: 12px;
    color: #777;
    margin-top: 10px;
    text-align: center;
}
.warning-message {
    background-color: #ffecb3; 
    border-left: 5px solid #ff9800;
    padding: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    margin-top: 10px;
}

.warning-message i {
    font-size: 18px;
    color: #ff9800;
}
@media (max-width: 1024px) {
    .seller-info-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: 15px;
    }

    .seller-image {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }

    .seller-info {
        margin-left: 0;
    }

    .product-info-mobile {
        padding: 0 15px; 
    }

    #main-image {
        max-width: 100%; 
        max-height: 250px;
    }

    .btn-message {
        font-size: 14px;
        padding: 8px 16px;
    }
}