.hnsp-pricing,
.hnsp-pricing * {
    box-sizing: border-box;
}

.hnsp-pricing {
    --hnsp-accent: #f36b21;
    --hnsp-accent-dark: #d94d12;
    --hnsp-bg: #fff8f2;
    --hnsp-columns: 4;
    --hnsp-columns-pc: 4;
    --hnsp-columns-tablet: 2;
    --hnsp-columns-mobile: 1;
    width: 100%;
    padding: 30px 15px 40px;
    background: var(--hnsp-bg);
    font-family: inherit;
}

.hnsp-pricing img {
    display: block;
    max-width: 100%;
}

.hnsp-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
}

.hnsp-heading {
    position: relative;
    isolation: isolate;
    width: min(100%, 1040px);
    margin: 0 auto 24px;
    padding: 17px 70px 16px;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(115deg, var(--hnsp-accent-dark) 0%, var(--hnsp-accent) 42%, #ff8b36 68%, var(--hnsp-accent-dark) 100%);
    background-size: 220% 220%;
    border: 1px solid rgba(255,255,255,.34);
    border-radius: 18px;
    box-shadow:
        0 12px 28px rgba(177, 63, 10, .24),
        inset 0 1px 0 rgba(255,255,255,.34),
        inset 0 -1px 0 rgba(106,31,0,.18);
    text-align: center;
    animation:
        hnsp-heading-float 4.2s ease-in-out infinite,
        hnsp-heading-gradient 7s ease infinite;
}

.hnsp-heading::before {
    position: absolute;
    top: -85%;
    left: -38%;
    z-index: 1;
    width: 28%;
    height: 270%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255,255,255,.08) 20%,
        rgba(255,255,255,.72) 50%,
        rgba(255,255,255,.08) 80%,
        transparent 100%
    );
    filter: blur(.5px);
    content: "";
    transform: rotate(20deg);
    animation: hnsp-heading-shine 3.8s ease-in-out infinite;
}

.hnsp-heading::after {
    position: absolute;
    right: 12%;
    bottom: 0;
    left: 12%;
    z-index: 1;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.95),
        #fff4a8,
        rgba(255,255,255,.95),
        transparent
    );
    background-size: 220% 100%;
    border-radius: 999px;
    box-shadow: 0 0 12px rgba(255,255,255,.9);
    content: "";
    animation: hnsp-heading-line 2.7s linear infinite;
}

.hnsp-heading h2,
.hnsp-heading p {
    position: relative;
    z-index: 2;
}

.hnsp-heading h2 {
    margin: 0 0 6px;
    color: #fff;
    font-size: clamp(23px, 2.4vw, 34px);
    font-weight: 900;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(91,29,0,.32);
    text-transform: uppercase;
}

.hnsp-heading p {
    margin: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 750;
    line-height: 1.45;
    text-shadow: 0 1px 5px rgba(91,29,0,.25);
}

@keyframes hnsp-heading-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

@keyframes hnsp-heading-gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes hnsp-heading-shine {
    0% { left: -42%; opacity: 0; }
    12% { opacity: .9; }
    52% { opacity: .9; }
    70%, 100% { left: 122%; opacity: 0; }
}

@keyframes hnsp-heading-line {
    0% { background-position: 220% 0; }
    100% { background-position: -220% 0; }
}

.hnsp-grid {
    display: grid;
    grid-template-columns: repeat(var(--hnsp-columns-pc), minmax(0, 1fr));
    gap: 12px;
    align-items: stretch;
}

.hnsp-pricing-single .hnsp-grid {
    width: min(100%, 440px);
    margin-right: auto;
    margin-left: auto;
}

.hnsp-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid #f1d1bc;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(26, 39, 54, 0.07);
    transition: transform .25s ease, box-shadow .25s ease;
}

.hnsp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 35px rgba(26, 39, 54, 0.14);
}

.hnsp-media {
    position: relative;
    width: 100%;
    min-height: 245px;
    overflow: hidden;
    background: #e9edf0;
}

.hnsp-main-image {
    width: 100%;
    height: 245px;
    object-fit: cover;
    transition: transform .45s ease;
}

.hnsp-card:hover .hnsp-main-image {
    transform: scale(1.035);
}

.hnsp-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 245px;
    padding: 20px;
    color: #6d7b86;
    background: linear-gradient(135deg, #edf1f4, #dce4e9);
    font-size: 13px;
    font-weight: 800;
    text-align: center;
}

.hnsp-device-image {
    position: absolute;
    left: 9px;
    bottom: 49px;
    z-index: 2;
    width: 76px;
    height: 76px;
    padding: 3px;
    object-fit: cover;
    background: #fff;
    border: 2px solid rgba(255,255,255,.95);
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,.22);
}

.hnsp-stats {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: 43px;
    background: linear-gradient(90deg, var(--hnsp-accent-dark), var(--hnsp-accent));
}

.hnsp-stat {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 5px 2px;
    color: #fff;
    text-align: center;
}

.hnsp-stat:not(:last-child)::after {
    position: absolute;
    top: 9px;
    right: 0;
    bottom: 9px;
    width: 1px;
    background: rgba(255,255,255,.42);
    content: "";
}

.hnsp-stat-label {
    margin-bottom: 2px;
    font-size: 7px;
    font-weight: 700;
    line-height: 1.15;
    text-transform: uppercase;
    opacity: .9;
}

.hnsp-stat-value {
    overflow: hidden;
    font-size: 9px;
    font-weight: 800;
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hnsp-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding-top: 8px;
}

.hnsp-title-area {
    min-height: 104px;
    padding: 0 13px;
    text-align: center;
}

.hnsp-title-area h3 {
    margin: 0 0 3px;
    color: #050505;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.25;
}

.hnsp-reference-price {
    margin: 0 0 3px;
    color: #ed2b16;
    font-size: 13px;
    font-weight: 800;
}

.hnsp-equipment {
    margin: 0;
    color: #050505;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.35;
}

.hnsp-storage-wrap {
    padding: 10px 10px 12px;
    text-align: center;
}

.hnsp-storage-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 30px;
    padding: 5px 12px;
    color: var(--hnsp-accent-dark);
    background: #fff;
    border: 1px solid #f2b99c;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.hnsp-battery-icon {
    position: relative;
    display: inline-block;
    width: 13px;
    height: 17px;
    background: #f7ba48;
    border: 2px solid #68a95e;
    border-radius: 3px;
}

.hnsp-battery-icon::before {
    position: absolute;
    top: -4px;
    left: 3px;
    width: 4px;
    height: 3px;
    background: #68a95e;
    border-radius: 1px 1px 0 0;
    content: "";
}

.hnsp-battery-icon::after {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 3px;
    height: 6px;
    background: #fff;
    border-radius: 1px;
    content: "";
}

.hnsp-card-inner {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 0 8px 8px;
}

.hnsp-price-panel {
    margin-bottom: 9px;
    padding: 13px 10px 12px;
    color: #fff;
    background: linear-gradient(150deg, #f39362 0%, var(--hnsp-accent) 55%, #ff6508 100%);
    border-radius: 13px;
    text-align: center;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
}

.hnsp-package-label,
.hnsp-bill-range {
    display: block;
    font-size: 9px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

.hnsp-package-label {
    margin-bottom: 7px;
}

.hnsp-main-price {
    display: block;
    margin-bottom: 7px;
    font-size: 21px;
    font-weight: 900;
    line-height: 1.1;
}

.hnsp-details details {
    margin: 0 0 8px;
    overflow: hidden;
    background: #f7f7f8;
    border-radius: 12px;
}

.hnsp-details summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 7px;
    min-height: 43px;
    padding: 10px;
    color: #111;
    cursor: pointer;
    list-style: none;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.2;
    user-select: none;
}

.hnsp-details summary::-webkit-details-marker {
    display: none;
}

.hnsp-detail-label {
    color: var(--hnsp-accent-dark);
    font-size: 10px;
}

.hnsp-details summary::after {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    color: var(--hnsp-accent-dark);
    content: "+";
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
}

.hnsp-details details[open] summary::after {
    content: "−";
}

.hnsp-details details[open] summary {
    border-bottom: 1px solid #e8e8e8;
}

.hnsp-detail-content {
    padding: 10px 11px 12px;
    color: #343a40;
    background: #fff;
    font-size: 12px;
    line-height: 1.55;
}

.hnsp-detail-content p {
    margin: 0 0 7px;
}

.hnsp-detail-content p:last-child {
    margin-bottom: 0;
}

.hnsp-detail-content strong {
    color: #111;
}

.hnsp-footer {
    margin-top: auto;
    padding-top: 2px;
}

.hnsp-zalo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 9px 12px;
    color: #062b4d;
    background: #fff;
    border: 1px solid #a9bdd0;
    border-radius: 11px;
    font-size: 10px;
    font-weight: 900;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.hnsp-zalo:hover {
    color: #fff;
    background: #062b4d;
    border-color: #062b4d;
    transform: translateY(-1px);
}


/* Tự thu gọn khi chọn nhiều cột trên máy tính */
.hnsp-pc-cols-5 .hnsp-media,
.hnsp-pc-cols-5 .hnsp-main-image,
.hnsp-pc-cols-5 .hnsp-placeholder {
    min-height: 205px;
    height: 205px;
}

.hnsp-pc-cols-6 .hnsp-media,
.hnsp-pc-cols-6 .hnsp-main-image,
.hnsp-pc-cols-6 .hnsp-placeholder {
    min-height: 178px;
    height: 178px;
}

.hnsp-pc-cols-5 .hnsp-device-image,
.hnsp-pc-cols-6 .hnsp-device-image {
    bottom: 42px;
    width: 58px;
    height: 58px;
}

.hnsp-pc-cols-5 .hnsp-title-area,
.hnsp-pc-cols-6 .hnsp-title-area {
    min-height: 90px;
    padding-right: 8px;
    padding-left: 8px;
}

.hnsp-pc-cols-5 .hnsp-title-area h3 { font-size: 14px; }
.hnsp-pc-cols-6 .hnsp-title-area h3 { font-size: 12px; }
.hnsp-pc-cols-5 .hnsp-reference-price { font-size: 11px; }
.hnsp-pc-cols-6 .hnsp-reference-price { font-size: 10px; }
.hnsp-pc-cols-5 .hnsp-equipment { font-size: 12px; }
.hnsp-pc-cols-6 .hnsp-equipment { font-size: 10px; }
.hnsp-pc-cols-5 .hnsp-main-price { font-size: 18px; }
.hnsp-pc-cols-6 .hnsp-main-price { font-size: 15px; }
.hnsp-pc-cols-5 .hnsp-details summary,
.hnsp-pc-cols-6 .hnsp-details summary { font-size: 9px; }

@media (max-width: 1100px) {
    .hnsp-grid {
        grid-template-columns: repeat(var(--hnsp-columns-tablet), minmax(0, 1fr));
        gap: 14px;
    }

    .hnsp-media,
    .hnsp-main-image,
    .hnsp-placeholder {
        min-height: 260px;
        height: 260px;
    }

    .hnsp-stat-label { font-size: 8px; }
    .hnsp-stat-value { font-size: 10px; }

    .hnsp-tablet-cols-3 .hnsp-media,
    .hnsp-tablet-cols-3 .hnsp-main-image,
    .hnsp-tablet-cols-3 .hnsp-placeholder {
        min-height: 205px;
        height: 205px;
    }

    .hnsp-tablet-cols-4 .hnsp-media,
    .hnsp-tablet-cols-4 .hnsp-main-image,
    .hnsp-tablet-cols-4 .hnsp-placeholder {
        min-height: 170px;
        height: 170px;
    }

    .hnsp-tablet-cols-3 .hnsp-device-image,
    .hnsp-tablet-cols-4 .hnsp-device-image {
        left: 6px;
        bottom: 40px;
        width: 54px;
        height: 54px;
    }

    .hnsp-tablet-cols-3 .hnsp-title-area,
    .hnsp-tablet-cols-4 .hnsp-title-area {
        min-height: 84px;
        padding-right: 7px;
        padding-left: 7px;
    }

    .hnsp-tablet-cols-3 .hnsp-title-area h3 { font-size: 14px; }
    .hnsp-tablet-cols-4 .hnsp-title-area h3 { font-size: 12px; }
    .hnsp-tablet-cols-3 .hnsp-equipment { font-size: 12px; }
    .hnsp-tablet-cols-4 .hnsp-equipment { font-size: 10px; }
    .hnsp-tablet-cols-3 .hnsp-main-price { font-size: 18px; }
    .hnsp-tablet-cols-4 .hnsp-main-price { font-size: 15px; }
    .hnsp-tablet-cols-3 .hnsp-details summary,
    .hnsp-tablet-cols-4 .hnsp-details summary { font-size: 9px; }
}

@media (max-width: 640px) {
    .hnsp-pricing {
        padding: 20px 7px 25px;
    }

    .hnsp-heading {
        margin-bottom: 16px;
        padding: 13px 18px 12px;
        border-radius: 13px;
    }

    .hnsp-heading h2 {
        font-size: 20px;
    }

    .hnsp-heading p {
        padding: 0 6px;
        font-size: 12px;
        line-height: 1.4;
    }

    .hnsp-grid {
        grid-template-columns: repeat(var(--hnsp-columns-mobile), minmax(0, 1fr));
        gap: 10px;
    }

    .hnsp-card:hover {
        transform: none;
    }

    /* 1 cột: giữ giao diện lớn, dễ đọc */
    .hnsp-mobile-cols-1 .hnsp-media,
    .hnsp-mobile-cols-1 .hnsp-main-image,
    .hnsp-mobile-cols-1 .hnsp-placeholder {
        min-height: 250px;
        height: 250px;
    }

    .hnsp-mobile-cols-1 .hnsp-device-image {
        width: 70px;
        height: 70px;
    }

    .hnsp-mobile-cols-1 .hnsp-title-area {
        min-height: auto;
        padding-bottom: 5px;
    }

    .hnsp-mobile-cols-1 .hnsp-title-area h3 { font-size: 19px; }
    .hnsp-mobile-cols-1 .hnsp-equipment { font-size: 16px; }
    .hnsp-mobile-cols-1 .hnsp-main-price { font-size: 23px; }
    .hnsp-mobile-cols-1 .hnsp-details summary { font-size: 12px; }
    .hnsp-mobile-cols-1 .hnsp-detail-label { font-size: 11px; }
    .hnsp-mobile-cols-1 .hnsp-zalo { min-height: 44px; font-size: 12px; }

    /* 2–3 cột: tự động thu nhỏ toàn bộ thẻ */
    .hnsp-mobile-cols-2,
    .hnsp-mobile-cols-3 {
        padding-right: 5px;
        padding-left: 5px;
    }

    .hnsp-mobile-cols-2 .hnsp-grid { gap: 7px; }
    .hnsp-mobile-cols-3 .hnsp-grid { gap: 5px; }

    .hnsp-mobile-cols-2 .hnsp-card,
    .hnsp-mobile-cols-3 .hnsp-card {
        border-radius: 6px;
        box-shadow: 0 4px 12px rgba(26, 39, 54, .08);
    }

    .hnsp-mobile-cols-2 .hnsp-media,
    .hnsp-mobile-cols-2 .hnsp-main-image,
    .hnsp-mobile-cols-2 .hnsp-placeholder {
        min-height: 135px;
        height: 135px;
    }

    .hnsp-mobile-cols-3 .hnsp-media,
    .hnsp-mobile-cols-3 .hnsp-main-image,
    .hnsp-mobile-cols-3 .hnsp-placeholder {
        min-height: 96px;
        height: 96px;
    }

    .hnsp-mobile-cols-2 .hnsp-placeholder,
    .hnsp-mobile-cols-3 .hnsp-placeholder {
        padding: 6px;
        font-size: 8px;
    }

    .hnsp-mobile-cols-2 .hnsp-device-image {
        left: 4px;
        bottom: 31px;
        width: 38px;
        height: 38px;
        padding: 1px;
        border-width: 1px;
    }

    .hnsp-mobile-cols-3 .hnsp-device-image {
        left: 3px;
        bottom: 24px;
        width: 27px;
        height: 27px;
        padding: 1px;
        border-width: 1px;
    }

    .hnsp-mobile-cols-2 .hnsp-stats { min-height: 31px; }
    .hnsp-mobile-cols-3 .hnsp-stats { min-height: 24px; }

    .hnsp-mobile-cols-2 .hnsp-stat,
    .hnsp-mobile-cols-3 .hnsp-stat {
        padding: 2px 1px;
    }

    .hnsp-mobile-cols-2 .hnsp-stat-label,
    .hnsp-mobile-cols-3 .hnsp-stat-label {
        display: none;
    }

    .hnsp-mobile-cols-2 .hnsp-stat-value {
        font-size: 7.5px;
        white-space: normal;
    }

    .hnsp-mobile-cols-3 .hnsp-stat-value {
        font-size: 6.2px;
        white-space: normal;
    }

    .hnsp-mobile-cols-2 .hnsp-content,
    .hnsp-mobile-cols-3 .hnsp-content {
        padding-top: 4px;
    }

    .hnsp-mobile-cols-2 .hnsp-title-area {
        min-height: 62px;
        padding: 0 5px;
    }

    .hnsp-mobile-cols-3 .hnsp-title-area {
        min-height: 47px;
        padding: 0 3px;
    }

    .hnsp-mobile-cols-2 .hnsp-title-area h3 {
        margin-bottom: 2px;
        font-size: 12px;
        line-height: 1.18;
    }

    .hnsp-mobile-cols-3 .hnsp-title-area h3 {
        display: -webkit-box;
        overflow: hidden;
        margin-bottom: 1px;
        font-size: 9px;
        line-height: 1.15;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .hnsp-mobile-cols-2 .hnsp-reference-price { font-size: 9px; }
    .hnsp-mobile-cols-3 .hnsp-reference-price { font-size: 7px; }

    .hnsp-mobile-cols-2 .hnsp-equipment {
        display: -webkit-box;
        overflow: hidden;
        font-size: 9px;
        line-height: 1.2;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .hnsp-mobile-cols-3 .hnsp-equipment {
        display: none;
    }

    .hnsp-mobile-cols-2 .hnsp-storage-wrap {
        padding: 4px 3px 5px;
    }

    .hnsp-mobile-cols-3 .hnsp-storage-wrap {
        padding: 2px 2px 3px;
    }

    .hnsp-mobile-cols-2 .hnsp-storage-badge {
        gap: 3px;
        min-height: 20px;
        padding: 3px 6px;
        font-size: 7px;
    }

    .hnsp-mobile-cols-3 .hnsp-storage-badge {
        gap: 2px;
        min-height: 17px;
        padding: 2px 4px;
        font-size: 6px;
    }

    .hnsp-mobile-cols-2 .hnsp-battery-icon,
    .hnsp-mobile-cols-3 .hnsp-battery-icon {
        width: 8px;
        height: 11px;
        border-width: 1px;
    }

    .hnsp-mobile-cols-2 .hnsp-battery-icon::before,
    .hnsp-mobile-cols-3 .hnsp-battery-icon::before {
        top: -3px;
        left: 2px;
        width: 2px;
        height: 2px;
    }

    .hnsp-mobile-cols-2 .hnsp-battery-icon::after,
    .hnsp-mobile-cols-3 .hnsp-battery-icon::after {
        top: 2px;
        left: 2px;
        width: 2px;
        height: 4px;
    }

    .hnsp-mobile-cols-2 .hnsp-card-inner {
        padding: 0 4px 5px;
    }

    .hnsp-mobile-cols-3 .hnsp-card-inner {
        padding: 0 3px 4px;
    }

    .hnsp-mobile-cols-2 .hnsp-price-panel {
        margin-bottom: 5px;
        padding: 7px 4px 6px;
        border-radius: 7px;
    }

    .hnsp-mobile-cols-3 .hnsp-price-panel {
        margin-bottom: 4px;
        padding: 5px 2px 4px;
        border-radius: 6px;
    }

    .hnsp-mobile-cols-2 .hnsp-package-label,
    .hnsp-mobile-cols-2 .hnsp-bill-range {
        font-size: 6.7px;
    }

    .hnsp-mobile-cols-3 .hnsp-package-label {
        margin-bottom: 3px;
        font-size: 5.6px;
    }

    .hnsp-mobile-cols-3 .hnsp-bill-range {
        display: none;
    }

    .hnsp-mobile-cols-2 .hnsp-main-price {
        margin-bottom: 4px;
        font-size: 14px;
    }

    .hnsp-mobile-cols-3 .hnsp-main-price {
        margin-bottom: 2px;
        font-size: 10px;
    }

    .hnsp-mobile-cols-2 .hnsp-details details,
    .hnsp-mobile-cols-3 .hnsp-details details {
        margin-bottom: 4px;
        border-radius: 7px;
    }

    .hnsp-mobile-cols-2 .hnsp-details summary {
        min-height: 30px;
        padding: 5px;
        font-size: 8px;
    }

    .hnsp-mobile-cols-3 .hnsp-details summary {
        min-height: 25px;
        padding: 3px;
        gap: 2px;
        font-size: 6.7px;
    }

    .hnsp-mobile-cols-2 .hnsp-detail-label,
    .hnsp-mobile-cols-3 .hnsp-detail-label {
        display: none;
    }

    .hnsp-mobile-cols-2 .hnsp-details summary::after {
        width: 14px;
        height: 14px;
        font-size: 13px;
    }

    .hnsp-mobile-cols-3 .hnsp-details summary::after {
        width: 11px;
        height: 11px;
        font-size: 10px;
    }

    .hnsp-mobile-cols-2 .hnsp-detail-content {
        padding: 7px;
        font-size: 9px;
        line-height: 1.4;
    }

    .hnsp-mobile-cols-3 .hnsp-detail-content {
        padding: 5px;
        font-size: 7.5px;
        line-height: 1.35;
    }

    .hnsp-mobile-cols-2 .hnsp-zalo {
        min-height: 30px;
        padding: 6px 4px;
        border-radius: 7px;
        font-size: 8px;
    }

    .hnsp-mobile-cols-3 .hnsp-zalo {
        min-height: 25px;
        padding: 4px 2px;
        border-radius: 6px;
        font-size: 6.8px;
    }
}

@media (max-width: 390px) {
    .hnsp-mobile-cols-1 .hnsp-media,
    .hnsp-mobile-cols-1 .hnsp-main-image,
    .hnsp-mobile-cols-1 .hnsp-placeholder {
        min-height: 225px;
        height: 225px;
    }

    .hnsp-mobile-cols-2 .hnsp-media,
    .hnsp-mobile-cols-2 .hnsp-main-image,
    .hnsp-mobile-cols-2 .hnsp-placeholder {
        min-height: 120px;
        height: 120px;
    }

    .hnsp-mobile-cols-3 .hnsp-media,
    .hnsp-mobile-cols-3 .hnsp-main-image,
    .hnsp-mobile-cols-3 .hnsp-placeholder {
        min-height: 86px;
        height: 86px;
    }

    .hnsp-mobile-cols-2 .hnsp-main-price { font-size: 13px; }
    .hnsp-mobile-cols-3 .hnsp-main-price { font-size: 9px; }
}

@media (prefers-reduced-motion: reduce) {
    .hnsp-heading,
    .hnsp-heading::before,
    .hnsp-heading::after,
    .hnsp-card,
    .hnsp-main-image {
        animation: none !important;
        transition: none !important;
    }
}
