.featured-product {
    position: relative;
    height: 212px;
    background: linear-gradient(0deg, #1a1919 20%, #081549 80%);
    border-radius: 18px;
    box-shadow: 0 0 15px rgba(0, 10, 255, 0.6), 0 0 15px rgba(0, 10, 255, 0.4), 0px 8px 15px rgba(0, 10, 255, 0.76);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 0;
    cursor: pointer;
}

.featured-product-image {
    min-width: 150px;
    max-width: 170px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-width: 0;
    min-height: 0;
    border: 5px solid #0e216d;
    border-radius: 18px;
    margin: 30px;
}

.featured-product-image-blur {
    position: absolute;
    inset: 0;
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    z-index: 0;
}

.featured-product-image-blur img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px) brightness(0.9);
}

.featured-product-image-main {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.featured-product-image-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    margin: 0;
}

.featured-product-info {
    width: 70%;
    height: 100%;
    padding: 30px 25px 10px 0;
    display: flex;
    flex-direction: column;
    color: #fff;
    gap: 10px;
}

.featured-product-type {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
}

.featured-product-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.featured-product-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 3px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.featured-product-meta-info {
    font-size: 15px;
}

.featured-product-meta-dot {
    display: inline-block;
    width: 5px;
    height: 5px;
    margin: 0 8px;
    background: #ccc;
    border-radius: 50%;
    vertical-align: middle;
    opacity: 0.7;
}

.featured-product-sales, .featured-product-seller {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.featured-product-seller-shield {
    display: inline-block;
    width: 17px;
    height: 17px;
    margin: 0 3px;
    vertical-align: middle;
    background: url('/assets/img/svg/shield.svg') center center no-repeat;
    background-size: contain;
}

.featured-product-rating {
    display: flex;
    align-items: center;
}

.featured-product-rating .fa-star {
    color: #FFC107;
    margin-right: 3px;
}

.featured-product-rating-value {
    color: #FFC107;
    font-weight: 700;
}

.featured-product-price {
    font-size: 24px;
    font-weight: 700;
}

.featured-product-button {
    width: 50%;
    border-radius: 16px;
    padding: 8px 7px 6px 7px;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    color: #fff;
    background: linear-gradient(180deg, #008fee 0%, #000aff 100%);
    border: 5px solid #0e216d;
    transition: all 0.2s ease;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.featured-product-button:hover {
    transform: translateY(-2px);
    color: #fff;
}

.featured-product-price-row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 12px;
    margin-bottom: 8px;
}

.featured-product-image-animated {
    position: relative;
    overflow: hidden;
}

.featured-product-image-animated::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -100%;
    width: 200%;
    height: 120%;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0) 30%,
        rgba(0, 143, 238, 0.3) 40%,
        rgba(255,255,255,0.5) 50%,
        rgba(0, 10, 255, 0.3) 60%,
        rgba(255,255,255,0) 70%
    );
    transform: skewX(-20deg);
    pointer-events: none;
    opacity: 1;
    z-index: 4;
    animation: shine-move-featured 2s cubic-bezier(.4,0,.2,1) infinite;
    animation-delay: 0s;
}

@keyframes shine-move-featured {
    0%, 100% { left: -100%; opacity: 0; }
    10% { opacity: 1; }
    50% { left: 100%; opacity: 1; }
    51% { opacity: 0; }
}

@media (max-width: 768px) {
    .featured-product-meta-dot {
        width: 4px;
        height: 4px;
        margin: 0 5px;
    }
}

@media (max-width: 992px) {
    .featured-product {
        height: auto;
        min-height: 212px;
    }
    .featured-product-title {
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

@media (max-width: 768px) {
    .featured-product {
        height: auto;
        min-height: 212px;
    }

    .featured-product-image {
        width: auto;
        max-width: 170px;
        margin: 20px;
        aspect-ratio: 1/1;
        height: auto;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .featured-product-image-blur {
        margin: 0;
    }

    .featured-product-info {
        width: auto;
        height: auto;
        padding: 20px 16px 6px 5px;
    }
}

@media (max-width: 576px) {
    .featured-product {
        display: flex;
        flex-wrap: wrap;
        padding: 8px;
        min-height: auto;
        height: auto;
        position: relative;
        cursor: pointer;
        background: linear-gradient(0deg, #1a1919 10%, #081549 100%);
        padding-bottom: 62px;
    }

    .featured-product-image {
        position: relative;
        flex: 0 0 75px;
        max-width: 90px;
        min-width: 80px;
        height: auto;
        aspect-ratio: 1/1;
        margin: 0 8px;
        z-index: auto;
        border-width: 2px;
        border-radius: 10px;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
    }

    .featured-product-info {
        flex: 1;
        min-width: 0;
        width: auto;
        margin-left: 0;
        padding: 8px;
        margin-right: 0;
        margin-top: 0;
        margin-bottom: 0;
        text-align: left;
    }

    .featured-product-seller-shield {
        width: 15px;
        height: 15px;
    }

    .featured-product-price-row {
        position: absolute;
        bottom: 16px;
        left: 8px;
        right: 8px;
        margin: 0;
        justify-content: center;
        width: calc(100% - 16px);
        gap: 8px;
        padding-top: 8px;
    }

    .featured-product-button {
        width: 60%;
        font-size: 15px;
        height: 36px;
        padding: 3px;
        border-width: 2px;
        border-radius: 10px;
    }

    .featured-product-price {
        font-size: 18px;
        display: flex;
        align-items: center;
    }

    .featured-product-meta {
        font-size: 13px;
        margin-bottom: 1px;
        flex-wrap: wrap;
        gap: 2px;
        line-height: 1;
        text-align: left;
    }

    .featured-product-title {
        font-size: 14px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-bottom: 2px;
        line-height: 1;
        word-break: break-word;
        max-height: 28px;
        text-align: left;
    }

    .featured-product-type {
        font-size: 13px;
        margin-bottom: 1px;
        text-align: left;
        display: block;
        line-height: 1;
    }

    .featured-product-meta-dot {
        width: 3px;
        height: 3px;
        margin: 0 3px;
    }

    .featured-product-meta-info,
    .featured-product-rating,
    .featured-product-sales,
    .featured-product-seller {
        text-align: left;
    }

    .featured-product-link {
        height: auto;
    }

    .featured-product-button:hover {
        transform: translateY(-1px);
        font-size: 15px;
    }

    .featured-product-sales,
    .featured-product-seller {
        max-width: 100%;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .featured-product * {
        box-sizing: border-box;
    }
}

@media (min-width: 992px) and (max-width: 1150px) {
    .featured-product-info {
        width: 60%;
    }
    .featured-product-title {
        font-size: 16px;
    }
}
