/* Header Cart Icon 928 */
.hci-928-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    font-family: 'Poppins', sans-serif;
}

/* Trigger Button */
.hci-928-trigger {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #004A8F;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease;
}
.hci-928-trigger:hover {
    background: rgba(0, 74, 143, 0.08);
}
.hci-928-icon {
    width: 26px;
    height: 26px;
    display: block;
}

/* Count Badge */
.hci-928-count {
    position: absolute;
    top: 0;
    right: 0;
    background: #004A8F;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0 3px;
    pointer-events: none;
    transition: transform 0.2s ease;
}
.hci-928-count.hci-928-bump {
    transform: scale(1.4);
}

/* Dropdown */
.hci-928-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 320px;
    background: #ffffff;
    border: 1px solid #E8ECF0;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 74, 143, 0.12);
    z-index: 99999;
    overflow: hidden;
    animation: hci928FadeIn 0.2s ease;
}
.hci-928-dropdown[hidden] {
    display: none;
}
@keyframes hci928FadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Dropdown Header */
.hci-928-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-bottom: 1px solid #E8ECF0;
    background: #F5F7FA;
}
.hci-928-title {
    font-size: 15px;
    font-weight: 700;
    color: #1A2028;
    font-family: 'Poppins', sans-serif;
}
.hci-928-close {
    background: none;
    border: none;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    color: #7A7A7A;
    padding: 0 4px;
    transition: color 0.2s;
}
.hci-928-close:hover {
    color: #004A8F;
}

/* Items List */
.hci-928-items {
    max-height: 280px;
    overflow-y: auto;
    padding: 10px 0;
}
.hci-928-empty {
    text-align: center;
    color: #7A7A7A;
    font-size: 14px;
    padding: 24px 18px;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

/* Single Item */
.hci-928-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    transition: background 0.15s;
}
.hci-928-item:hover {
    background: #F5F7FA;
}
.hci-928-item-img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #E8ECF0;
    flex-shrink: 0;
}
.hci-928-item-img--placeholder {
    background: #E8ECF0;
}
.hci-928-item-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.hci-928-item-name {
    font-size: 13px;
    font-weight: 600;
    color: #1A2028;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hci-928-item-qty {
    font-size: 12px;
    color: #7A7A7A;
    font-family: 'Poppins', sans-serif;
}
.hci-928-item-price {
    color: #004A8F;
    font-weight: 600;
}
.hci-928-item-remove {
    color: #7A7A7A;
    font-size: 18px;
    line-height: 1;
    text-decoration: none;
    flex-shrink: 0;
    transition: color 0.2s;
    padding: 4px;
}
.hci-928-item-remove:hover {
    color: #e53e3e;
}

/* Footer */
.hci-928-footer {
    padding: 14px 18px;
    border-top: 1px solid #E8ECF0;
    background: #F5F7FA;
}
.hci-928-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: #1A2028;
    margin-bottom: 12px;
}
.hci-928-subtotal-price {
    font-weight: 700;
    color: #004A8F;
    font-size: 15px;
}
.hci-928-cta {
    display: block;
    width: 100%;
    text-align: center;
    background: #004A8F;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 11px 0;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
}
.hci-928-cta:hover {
    background: #003570;
    transform: translateY(-1px);
    color: #ffffff;
}
