img.amazing_product_img {
    height: 300px !important;
    object-fit: contain;
}

/* change the newest product box modal item */
.product-box-item {
    height: 300px;
}

.skeleton {
    position: relative;
    overflow: hidden;
    background: #ececec;
    border-radius: 8px;
}

.skeleton::after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    background: linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, .6),
            transparent
    );
    animation: shimmer 1.4s infinite;
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

.sk-icon {
    width: 20px;
    height: 20px;
}

.sk-title {
    width: 140px;
    height: 20px;
    margin-right: 10px;
}

.sk-link {
    width: 80px;
    height: 18px;
}

.sk-image {
    width: 100%;
    aspect-ratio: 1/1;
}

.sk-title-lg {
    width: 90%;
    height: 18px;
    margin-top: 15px;
}

.sk-title-sm {
    width: 60%;
    height: 16px;
    margin-top: 10px;
}

.sk-price {
    width: 45%;
    height: 22px;
    margin-top: 20px;
}

.sk-old-price {
    width: 30%;
    height: 16px;
    margin-top: 10px;
}

.top-selling-skeleton {
    display: flex;
    align-items: center;
    min-height: 150px;
    margin-bottom: 1rem;
    padding: 1rem;
}

.top-selling-skeleton-image {
    width: 96px;
    min-width: 96px;
    aspect-ratio: 1;
}

.top-selling-skeleton-content {
    flex: 1;
    min-width: 0;
    padding-right: 1rem;
}

.top-selling-skeleton-content .sk-title-lg {
    margin-top: 0;
}

.hero-banner-skeleton {
    display: flex;
    align-items: flex-end;
    min-height: 300px;
    aspect-ratio: 1920 / 900;
    padding: 2rem;
    border-radius: 1rem;
}

.hero-banner-skeleton-content {
    width: min(100%, 280px);
}

.hero-banner-skeleton-title {
    width: 70%;
    height: 1.5rem;
}

.hero-banner-skeleton-text {
    width: 100%;
    height: 1rem;
    margin-top: .75rem;
}

@media (max-width: 767px) {
    .hero-banner-skeleton {
        min-height: 360px;
        aspect-ratio: 4 / 5;
        padding: 1.25rem;
    }
}

.amazing-skeleton-card {
    min-height: 400px;
    padding: 1.5rem;
    background: #fff;
    border-radius: 1rem;
}

.amazing-skeleton-image {
    width: min(100%, 300px);
    aspect-ratio: 1;
    margin: 0 auto;
}

.amazing-skeleton-timer {
    margin-top: 1rem;
}

.amazing-skeleton-timer .skeleton {
    width: 42px;
    height: 42px;
    border-radius: 50%;
}

.amazing-skeleton-label {
    width: 45%;
    height: 1.5rem;
}

.amazing-skeleton-title {
    width: 90%;
    height: 1.5rem;
    margin-top: 2rem;
}

.amazing-skeleton-line {
    width: 100%;
    height: 1rem;
    margin-top: 1rem;
}

.amazing-skeleton-line.short {
    width: 70%;
}

.amazing-skeleton-price {
    width: 55%;
    height: 2rem;
    margin-top: 2rem;
}

.amazing-skeleton-button {
    width: 100%;
    height: 2.75rem;
    margin-top: 2rem;
    border-radius: 999px;
}

.amazing-skeleton-list {
    display: grid;
    gap: .75rem;
    padding: 1rem;
}

.amazing-skeleton-list .skeleton {
    height: 3.25rem;
}

@media (max-width: 767px) {
    .amazing-skeleton-card {
        min-height: 0;
        padding: 1rem;
    }

    .amazing-skeleton-image {
        width: min(72vw, 260px);
    }

    .amazing-skeleton-title {
        margin-top: 1.25rem;
    }
}
