/* ==========================================================================
   AMY PREMIUM CATEGORY - Sá»¨ Vá»† SINH PAGE SPECIFIC STYLES
   ========================================================================== */

.category-group-section {
    margin-bottom: 60px;
    scroll-margin-top: 140px;
    /* offset for sticky header */
}

.category-group-title {
    font-size: 18px;
    font-weight: 700;
    color: #111111;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    border-bottom: none;
}

.category-group-section .row {
    margin-bottom: 36px;
    /* Offset the margin-bottom of clm so overall spacing is perfect */
    gap: 20px 0;
}

.category-group-section .clm {}

.category-group-section .premium-cat-card {
    width: 100%;
    /* Ensure card spans full width of the column container */
}

.premium-cat-card {
    background: #F6F6F6;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    text-decoration: none !important;
    height: 100%;
    border: 1px solid transparent;
    overflow: hidden;
    /* Clips image corners perfectly to the card's 12px border radius */
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.premium-cat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.04);
    background: #F6F6F6;
    /* Keep card background consistent so image background blends flawlessly */
    border-color: #E2E2E2;
}

.premium-cat-card .card-img {
    width: 100%;
    position: relative;
    padding-bottom: 58.33%;
    /* 105 / 180 = 58.33% aspect ratio matching the 180x105 images */
    overflow: hidden;
    background: #F6F6F6;
}

.premium-cat-card .card-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Cover ensures seamless edge-to-edge blending with the gray card background */
    display: block;
    transition: transform 0.4s ease;
}

.premium-cat-card:hover .card-img img {
    transform: scale(1.03);
    /* subtle premium scale on hover */
}

.premium-cat-card .card-img img.blend-multiply {
    mix-blend-mode: multiply;
    object-fit: contain;
    /* since demo-product.png is a centered product on a white square, contain is better */
    width: 90%;
    height: 90%;
    top: 5%;
    left: 5%;
}

.premium-cat-card .card-info {
    padding: 16px 20px 20px 20px;
    /* Top padding is separated cleanly, no padding on card level */
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: flex-start;
    text-align: left;
}

.premium-cat-card .card-info ul li {
    margin-left: 15px;
}

.premium-cat-card .card-info ul {
    margin-bottom: 15px;
}

.premium-cat-card .card-title {
    font-size: 16px;
    font-weight: 700;
    color: #111111;
    margin: 0 0 6px 0 !important;
    text-transform: none;
    line-height: 1.4;
    height: auto;
}

.premium-cat-card .card-desc {
    font-size: 12px;
    color: #666666;
    margin-bottom: 16px;
    line-height: 1.4;
    font-weight: 400;
    /* min-height: 34px; */
}

.premium-cat-card .card-link {
    font-size: 14px;
    font-weight: 700;
    color: #111111;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    transition: gap 0.2s ease;
}

.premium-cat-card:hover .card-link {
    gap: 10px;
    color: var(--amy-red-accent, #d1121d);
}

/* Premium Trust Bar styles layout overrides if needed */
.trust-bar-container {
    margin-top: 50px;
    margin-bottom: 20px;
}