.icon_see_more_gray {
    -webkit-mask: url(/skin/frontend/ma_vanese/fahasa/images/ico_arrow_gray.svg) no-repeat center center;
    mask: url(/skin/frontend/ma_vanese/fahasa/images/ico_arrow_gray.svg) no-repeat center center;
    -webkit-mask-size: 18px;
    mask-size: 18px;
    background-color: #ED1E36;  /* ← đổi màu tại đây */
    background-image: none;     /* xóa background url cũ */
    transform: rotate(-180deg);
    height: 18px;
    width: 18px;
    transition: transform 0.5s ease;
}

.limited-edition-container{
    width: 100%;
    max-width: 1230px;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 24px;
    position: relative;
    /* border: 1px solid #FFE6C2; */
    border: 1px solid #F59E0B33;
    /* box-shadow: 0 16px 24px -12px rgba(217, 140, 0, 0.2); */
    z-index: 1;
    font-family: 'Noto Sans', sans-serif;
}

.limited-edition-background-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.limited-edition-blur-circle {
    
    position: absolute;
    top: -80px;
    left: -80px;
    width: 350px;
    height: 350px;
    /* background: radial-gradient(circle, rgba(255, 218, 142, 0.7) 0%, rgba(255, 237, 190, 0.4) 40%, rgba(255, 255, 255, 0) 70%); */
    background: #F59E0B1A;
    border-radius: 50%;
    filter: blur(60px);
}

.limited-edition-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.limited-edition-header-content {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.limited-edition-header-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: linear-gradient(135deg, #FFF8EB 0%, #FFE0AD 100%); */
    border-radius: 50%;
    color: #D98C00;
    font-size: 28px;
    flex-shrink: 0;
    /* border: 2px solid #FFF8EB; */
}
.limited-edition-header-icon img{
    width: 100%;
    height: 100%;
}

.limited-edition-header-text-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 4px;
}

.limited-edition-header-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.limited-edition-header-title {
    font-family: 'Noto Sans Bold', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #0F172A;
}

.limited-edition-badge-collection{
    background: linear-gradient(90deg, rgba(245, 158, 11, 0) -5.44%, rgba(245, 158, 11, 0.5) 73.3%, rgba(217, 119, 6, 0.5) 100%);
    color: #582000;
    font-family: 'Noto Sans SemiBold', sans-serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0%;
    vertical-align: middle;
    padding: 4px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.limited-edition-header-subtitle {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #334155;
}

.limited-edition-see-all{
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
    vertical-align: middle;
    white-space: nowrap;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
    margin-top: 12px;
}

/* ===== Slider / Swiper ===== */
.limited-edition-items-container {
    position: relative;
    z-index: 1;
}

.limited-edition-list {
    overflow: hidden;
    width: 100%;
}

.limited-edition-item {
    width: 223px;
    flex-shrink: 0;
    height: auto;
    text-decoration: none;
    display: block;
}

/* ===== Card ===== */
.limited-edition-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border-radius: 8px;
    padding: 8px 8px 12px;
    border: 1px solid #F1F5F9;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.limited-edition-card:hover {
    box-shadow: 0 12px 24px -6px rgba(0, 0, 0, 0.1);
    border-color: #e5e5e5;
}

.limited-edition-card-image-outer {
    width: 100%;
    aspect-ratio: 1 / 1;
    margin-bottom: 8px;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.limited-edition-card-image-inner {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    overflow: hidden;
}

.limited-edition-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.limited-edition-card:hover .limited-edition-card-image {
    transform: scale(1.04);
}

.limited-edition-exclusive-icon {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 56px;
    height: 56px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 10;
    transition: transform 0.3s ease;
}

/* .limited-edition-card:hover .limited-edition-exclusive-icon {
    transform: scale(1.04);
} */

.limited-edition-card-title {
    font-family: 'Noto Sans SemiBold', sans-serif;
    font-size: 14px;
    color: #0F172A;
    margin: 4px 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 39px;
    line-height: 20px;
    /* padding: 0 4px; */
}

.limited-edition-card-info-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: auto;
    /* padding: 0 4px; */
}

.limited-edition-card-info {
    font-size: 12px;
    color: #64748B;
    display: flex;
    align-items: center;
    gap: 6px;
    height: 16px;
    line-height: 16px;
}

.limited-edition-card-info b {
    color: #B45309;
}

.limited-edition-card-info-highlight{
    color: #92400E;
}

.limited-edition-icon-gem,
.limited-edition-icon-fire {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

/* .limited-edition-divider{
    height: 1px;
    width: 100%;
    background-color: #F8FAFC;
    margin: 8px 0;
} */

.limited-edition-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #F8FAFC;
    padding-top: 8px;
    margin-top: 8px;
}

.limited-edition-price {
    font-family: 'Noto Sans SemiBold', sans-serif;
    font-size: 18px;
    color: #0F172A;
    line-height: 26px;
}

/* ===== Skeleton ===== */
.limited-edition-item.skeleton {
    pointer-events: none;
}

.limited-edition-item.skeleton .limited-edition-card {
    height: 374px;
    background: linear-gradient(90deg, #f0f0f0 25%, #f7f7f7 37%, #f0f0f0 63%);
    background-size: 400% 100%;
    animation: limited-edition-skeleton-loading 1.4s ease infinite;
}

@keyframes limited-edition-skeleton-loading {
    0% { background-position: 100% 50%; }
    100% { background-position: 0 50%; }
}

.limited-edition-buy-now {
    position: relative;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}
 
.limited-edition-buy-now > * {
    opacity: 0;
}
 
.limited-edition-buy-now::after {
    content: '';
    position: absolute;
    inset: 0;
    width: 32px;
    height: 32px;
    background: url('https://cdn1.fahasa.com/media/wysiwyg/Thang-07-2026/btnAddToCart_32x32.svg') no-repeat center / contain;
    pointer-events: none;
}

.limited-edition-buy-now:hover::after {
    background-image: url('https://cdn1.fahasa.com/media/wysiwyg/Thang-07-2026/btnAddToCart_Hover_32x32.svg');
}

.limited-edition-items-container .limited-edition-button-prev {
    left: -44px !important;
}

.limited-edition-items-container .limited-edition-button-next {
    right: -44px !important;
}

@media (max-width: 768px) {
    .limited-edition-container {
        padding: 8px;
        border-radius: 0px;
    }
    .limited-edition-see-all{
        margin-top: 8px;
    }
    .limited-edition-see-all-text{
        display: none;
    }
    .limited-edition-header{
        margin-bottom: 16px;
    }
    .limited-edition-header-title{
        font-size: 18px;
    }
    .limited-edition-header-subtitle{
        font-size: 12px;
    }
    .limited-edition-badge-collection{
        font-size: 10px;
        padding: 3px 8px;
    }
    .limited-edition-header-icon{
        width: 32px;
        height: 32px;
        font-size: 24px;
    }
    .limited-edition-header-title-row, .limited-edition-header-content{
        gap: 8px;
    }
    .limited-edition-card-info{
        gap: 3px;
        font-size: 10px;
    }
    .limited-edition-price{
        font-size: 16px;
    }
    .limited-edition-exclusive-icon {
        width: 42px;
        height: 42px;
    }
    .limited-edition-buy-now {
        width: 28px;
        height: 28px;
    }

    .limited-edition-card-title{
        margin-bottom: 4px;
    }

    .limited-edition-card-info-group{
        gap: 4px;
    }

    .limited-edition-blur-circle {
        top: -60px;
        left: -60px;
        width: 250px;
        height: 250px;
    }
    .limited-edition-card-image-outer{
        margin-bottom: 4px;
    }
}