
.cart-sidebar {
    display: none !important;
}

.cart-body {
    width: 100% !important;
}

/* PAGE */
.hz-wrap {
    background: #fff;
    padding: 20px 0;
}

/* GRID */
.hz-grid {
    display: flex;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
}

/* COLUMN */
.hz-col {
    width: 25%;
    padding: 0 12px;
    margin-bottom: 28px;
    display: flex;
}

@media (max-width: 992px) {
    .hz-col { width: 33.33%; }
}
@media (max-width: 768px) {
    .hz-col { width: 50%; }
}
@media (max-width: 576px) {
    .hz-col { width: 100%; }
}

/* CARD */
.hz-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 22px;

    width: 100%;
    display: flex;
    flex-direction: column;
}

/* HEADER */
.hz-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.hz-title {
    font-size: 18px;
    font-weight: 700;
}

.hz-flag {
    width: 22px;
    height: 16px;
}

/* DETAILS (NOW FIXED PROPERLY) */
.hz-details {
    background: #f7f9fc;
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 15px;
}

/* ROWS */
.hz-row {
    display: flex;
    font-size: 14px;
    padding: 6px 0;
    border-bottom: 1px dashed #e3e3e3;
}

.hz-row:last-child {
    border-bottom: none;
}

.hz-key {
    color: #666;
}

.hz-val {
    font-weight: 500;
}

/* DESCRIPTION */
.hz-desc {
    font-size: 13px;
    color: #777;
}

/* PRICE */
.hz-price {
    text-align: center;
    margin-top: auto;
    margin-bottom: 14px;
}

.hz-price-value {
    font-size: 30px;
    font-weight: 800;
    color: #1f6fff;

    white-space: nowrap;
}

.hz-cycle {
    font-size: 12px;
    color: #888;
}

/* BUTTON */
.hz-btn {
    display: block;
    text-align: center;
    background: #1f6fff;
    color: #fff;
    padding: 12px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
}

.hz-btn:hover {
    background: #0f5be0;
}