.fullpkg-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fullpkg-card {
    display: grid;
    grid-template-columns: 1.2fr 2fr 0.8fr;
    align-items: center;
    gap: 16px;
    background: #ffffff;
    border: 1px solid #eeeeef;
    border-radius: 12px;
    padding: 16px 20px;
}

.fullpkg-left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.fullpkg-icon {
    width: 28px;
    height: 28px;
}

.fullpkg-headings {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.fullpkg-title {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #1e2022;
}

.fullpkg-desc {
    font-size: 14px;
    color: #6b7280;
    line-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.fullpkg-features {
    display: grid;
    grid-template-columns: repeat(5, minmax(120px, 1fr));
    gap: 30px;
}

.fullpkg-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fullpkg-col-label {
    font-size: 12px;
    color: #6b7280;
    line-height: 16px;
}

.fullpkg-col-value {
    font-size: 14px;
    font-weight: 600;
    color: #23272e;
}

.fullpkg-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.fullpkg-price {
    font-size: 24px;
    font-weight: 700;
    color: #1e2022;
}

.fullpkg-price small {
    font-size: 12px;
    color: #6b7280;
    margin-left: 4px;
}

.fullpkg-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 8px;
    background: #ff4b0e;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 1px 2px rgba(143, 36, 0, 0.56), 0 0 0 1px #ff4b0e;
}

.fullpkg-btn-icon {
    width: 20px;
    height: 20px;
}

@media (max-width: 1200px) {
    .fullpkg-card {
        grid-template-columns: 1.4fr 1.8fr 0.8fr;
    }
    .fullpkg-features {
        grid-template-columns: repeat(5, minmax(100px, 1fr));
    }
}

@media (max-width: 992px) {
    .fullpkg-card {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .fullpkg-left {
        align-items: flex-start;
    }
    .fullpkg-right {
        align-items: center;
    }
    .fullpkg-desc {
        -webkit-line-clamp: 3;
    }
    .fullpkg-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .fullpkg-features {
        grid-template-columns: repeat(2, minmax(120px, 1fr));
    }
}


