.hmk-cart-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    text-decoration: none;
}

.hmk-cart-link img {
    display: block;
}

.hmk-cart-count {
    position: absolute;
    top: -7px;
    right: -8px;
    min-width: 17px;
    height: 17px;
    padding: 0 5px;
    border-radius: 999px;
    background: #d9b56f;
    color: #0e0e0e;
    font-size: 11px;
    font-weight: 700;
    line-height: 17px;
    text-align: center;
}

.hmk-cart-count.hidden {
    display: none;
}

.hmk-cart-add {
    min-width: 136px;
    min-height: 38px;
    border: 1px solid #d9b56f;
    background: #d9b56f;
    color: #111;
    cursor: pointer;
    white-space: nowrap;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.hmk-cart-add:hover {
    border-color: #f1ce82;
    background: #f1ce82;
    color: #111;
}

.hmk-cart-add.is-added {
    border-color: rgba(255, 255, 255, .32);
    background: transparent;
    color: inherit;
}

.hmk-cart-detail-button {
    margin-top: 10px;
}

.hmk-cart-page {
    min-height: 100vh;
    background: #111;
    color: #fff;
}

.hmk-cart-page__header,
.hmk-cart-page__main {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.hmk-cart-page__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 0;
}

.hmk-cart-page__logo {
    display: inline-flex;
    align-items: center;
}

.hmk-cart-page__logo img {
    width: 118px;
    height: auto;
}

.hmk-cart-page__back {
    color: #d9b56f;
    text-decoration: none;
}

.hmk-cart-page__main {
    padding: 34px 0 70px;
}

.hmk-cart-page h1 {
    margin: 0 0 26px;
    font-size: clamp(32px, 5vw, 58px);
    font-weight: 500;
    letter-spacing: 0;
}

.hmk-cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 28px;
    align-items: start;
}

.hmk-cart-items,
.hmk-cart-summary {
    border: 1px solid rgba(255, 255, 255, .12);
    background: #171717;
}

.hmk-cart-item {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr) auto;
    gap: 18px;
    padding: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.hmk-cart-item:last-child {
    border-bottom: 0;
}

.hmk-cart-item__image {
    width: 118px;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #232323;
}

.hmk-cart-item__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hmk-cart-item__title {
    margin: 0 0 8px;
    color: #fff;
    font-size: 18px;
    line-height: 1.35;
    text-decoration: none;
}

.hmk-cart-item__meta {
    margin: 0;
    color: rgba(255, 255, 255, .62);
    font-size: 14px;
}

.hmk-cart-item__side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
}

.hmk-cart-item__price {
    font-size: 18px;
    font-weight: 600;
}

.hmk-cart-qty {
    display: inline-grid;
    grid-template-columns: 34px 42px 34px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .18);
}

.hmk-cart-qty button,
.hmk-cart-remove,
.hmk-cart-copy {
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
}

.hmk-cart-qty button {
    height: 34px;
    font-size: 20px;
}

.hmk-cart-qty span {
    text-align: center;
}

.hmk-cart-remove {
    color: rgba(255, 255, 255, .62);
    font-size: 14px;
}

.hmk-cart-summary {
    position: sticky;
    top: 24px;
    padding: 22px;
}

.hmk-cart-summary h2 {
    margin: 0 0 18px;
    font-size: 24px;
    font-weight: 500;
}

.hmk-cart-total {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    font-size: 18px;
}

.hmk-cart-form {
    display: grid;
    gap: 12px;
}

.hmk-cart-form input,
.hmk-cart-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 0;
    background: #101010;
    color: #fff;
    font: inherit;
    padding: 13px 14px;
    box-sizing: border-box;
}

.hmk-cart-form textarea {
    min-height: 92px;
    resize: vertical;
}

.hmk-cart-submit,
.hmk-cart-secondary {
    min-height: 48px;
    border: 1px solid #d9b56f;
    background: #d9b56f;
    color: #111;
    cursor: pointer;
    font: inherit;
}

.hmk-cart-secondary {
    background: transparent;
    color: #d9b56f;
}

.hmk-cart-empty {
    border: 1px solid rgba(255, 255, 255, .12);
    background: #171717;
    padding: 34px;
}

.hmk-cart-empty p {
    margin: 0 0 22px;
    color: rgba(255, 255, 255, .72);
}

.hmk-cart-toast {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 10000;
    padding: 13px 18px;
    background: #d9b56f;
    color: #111;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .28);
    font-size: 14px;
}

@media (max-width: 860px) {
    .hmk-cart-layout {
        grid-template-columns: 1fr;
    }

    .hmk-cart-summary {
        position: static;
    }
}

@media (max-width: 620px) {
    .hmk-cart-page__header {
        padding: 18px 0;
    }

    .hmk-cart-item {
        grid-template-columns: 88px minmax(0, 1fr);
    }

    .hmk-cart-item__image {
        width: 88px;
    }

    .hmk-cart-item__side {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: center;
    }
}
