.blebas-main-bg-color {
    background-color: #a78bfa !important;
}

.blebas-secondry-bg-color {
    background-color: #5c6f8d !important;
}

.blebas-secondry-bg-color:hover {
    background-color: #7f89a5 !important;
}

.blebas-third-bg-color {
    background-color: #7f89a5 !important;
}

#search-results-container {
    top: 50px !important;
    left: 100px !important;
}

#search-results-list a {
    padding: 5px;
}

#search-results-list a>img {
    padding-left: 5px;
}

.blebas-category {
    background-color: #5c6f8d;
    color: white;
    border-radius: 3px;
}

.blebas-category>a::before,
.menu-main>ul>li>.link::before {
    background-color: #5c6f8d !important;
}

.blebas-btn-header {
    font-size: 14px;
    background-color: #5c6f8d;
    padding: 4px 12px 2px 12px;
    border-radius: 5px;
    color: white;
    border: 1px solid #a78bfa4d;
}

.blebas-btn-header-second {
    font-size: 14px;
    background-color: #ff2929;
    padding: 4px 13px 2px 13px;
    border-radius: 5px;
    color: white;
    border: 1px solid #ff2929;
}

.button-blebas {
    border-radius: 8px;
    font-size: 16px;
    background-color: #5C6F8D !important;
}

.button-blebas:hover {
    color: white;
}

.logo-img {
    height: 3.8rem;
}


/*Seller*/

.seller-hero-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.seller-hero-gradient::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.floating-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.gradient-border {
    position: relative;
    border-radius: 1rem;
}

.gradient-border::before {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    bottom: -2px;
    left: -2px;
    background: linear-gradient(45deg, #667eea, #764ba2, #f093fb, #f5576c);
    border-radius: 1rem;
    z-index: -1;
    animation: gradientRotate 4s ease-in-out infinite;
}

@keyframes gradientRotate {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.step-number {
    width: 48px;
    height: 48px;
    min-width: 48px;
}

.step-number::before {
    content: '';
    position: absolute;
    width: 64px;
    height: 64px;
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 50%;
    top: -8px;
    left: -8px;
    z-index: -1;
}


/*end seller*/

.button-main:hover {
    background-color: #5c6f8d !important;
    color: white !important;
}

.list-color .color-item {
    border: 1px solid black !important;
}

.custom-pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.custom-pagination {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    background: #fff;
    padding: 12px 16px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
}

.custom-pagination .pagination-btn {
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #444 !important;
    text-decoration: none !important;
    border: 1px solid #e5e7eb;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.25s ease;
    cursor: pointer;
}

.custom-pagination .pagination-btn:hover {
    background: #f8fafc;
    border-color: #d1d5db;
    color: #111 !important;
    transform: translateY(-1px);
}

.custom-pagination .pagination-btn.active {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff !important;
    border-color: #2563eb;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

.custom-pagination .pagination-btn.disabled {
    opacity: 0.45;
    pointer-events: none;
    cursor: not-allowed;
    background: #f9fafb;
}

.custom-pagination .pagination-btn.dots {
    border: none;
    background: transparent;
    min-width: auto;
    padding: 0 6px;
    box-shadow: none;
}

.custom-pagination .pagination-icon i {
    margin: 0 !important;
    font-size: 14px;
}


/* product card*/

.product-main:hover .list-size {
    opacity: 1;
    visibility: visible;
}

.product-name a:hover {
    color: black !important;
}

.bg-green-light {
    background-color: #a7f3d0 !important;
    color: #065f46 !important;
}

.bg-purple-light {
    background-color: #ddd6fe !important;
    color: #5b21b6 !important;
}

.product-img a {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}

.product-img img {
    transition: opacity 0.3s ease;
}

.product-img img:last-child {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.product-main:hover .product-img img:last-child {
    opacity: 1;
}

.product-main:hover .product-img img:first-child {
    opacity: 0;
}

.product-item {
    position: relative;
    z-index: 1;
}

.product-item:hover {
    z-index: 10;
}

.list-size-card {
    opacity: 0;
}

.product-main:hover .list-size-card {
    opacity: 1;
}

.list-image-card {
    opacity: 0;
}

.product-main:hover .list-image-card {
    opacity: 1;
}


/* end product card*/


/* Lazy Load */

.lazy-image {
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
}

.lazy-image.loaded {
    opacity: 1;
}

.lazy-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #f1f5f9 0%, #e2e8f0 30%, #f1f5f9 50%, #e2e8f0 70%, #f1f5f9 100%);
    background-size: 400% 100%;
    animation: shimmer 5s linear infinite;
    z-index: 2;
    pointer-events: none;
}

@keyframes shimmer {
    0% {
        background-position: 400% 0;
    }
    100% {
        background-position: -400% 0;
    }
}

.product-img img:last-child {
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 3;
}

.product-main:hover .product-img img:last-child {
    opacity: 1;
}

.lazy-image.loaded~.lazy-placeholder {
    opacity: 0;
    transition: opacity 0.8s ease;
}


/*  product category page*/

.category-banner {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.category-banner img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}


/* end product category page*/

@media (max-width: 768px) {
    .custom-pagination {
        gap: 6px;
        padding: 10px 12px;
        border-radius: 14px;
    }
    .custom-pagination .pagination-btn {
        min-width: 38px;
        height: 38px;
        padding: 0 12px;
        font-size: 13px;
        border-radius: 10px;
    }
}