.dk-product-box {
    margin: 18px 0 28px;
    padding: 18px 20px;
    border-left: 4px solid #d69b20;
    background: #fafafa;
    border-radius: 2px;
}

.dk-product-price-label {
    font-size: 13px;
    color: #777;
    margin-bottom: 2px;
}

.dk-product-price {
    font-size: 28px;
    line-height: 1.15;
    font-weight: 700;
    color: #b47b09;
    margin-bottom: 14px;
}

.dk-product-unit {
    font-size: 15px;
    font-weight: 500;
    color: #555;
}

.dk-add-product {
    border: 0;
    background: #111;
    color: #fff;
    padding: 11px 18px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: .2s ease;
}

.dk-add-product:hover {
    background: #b47b09;
    color: #fff;
}

.dk-cart-icon {
    margin-right: 5px;
}

.dk-discount-message {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    color: #d00000;
}

.dk-product-added {
    display: inline-block;
    margin-left: 10px;
    font-size: 13px;
    color: #3d7c35;
}

.dk-floating-cart {
    position: fixed;
    z-index: 99998;
    right: 22px;
    bottom: 22px;
}

.dk-floating-cart-button {
    border: 0;
    background: #111;
    color: #fff;
    padding: 13px 16px;
    border-radius: 30px;
    box-shadow: 0 6px 22px rgba(0,0,0,.22);
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dk-floating-cart-button:hover {
    background: #b47b09;
}

#dk-cart-count {
    background: #d69b20;
    color: #111;
    min-width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
}

.dk-cart-overlay {
    position: fixed;
    z-index: 99999;
    inset: 0;
    background: rgba(0,0,0,.58);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.dk-cart-modal {
    position: relative;
    width: min(720px, 100%);
    max-height: calc(100vh - 40px);
    overflow: auto;
    background: #fff;
    border-radius: 8px;
    padding: 28px;
    box-shadow: 0 20px 70px rgba(0,0,0,.3);
}

.dk-close-cart {
    position: absolute;
    right: 17px;
    top: 12px;
    border: 0;
    background: transparent;
    font-size: 30px;
    line-height: 1;
    color: #777;
    cursor: pointer;
}

.dk-cart-kicker {
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #b47b09;
    font-size: 11px;
    font-weight: 700;
}

.dk-cart-header h2 {
    margin: 2px 0 3px;
    color: #111;
}

.dk-cart-count-modal {
    color: #777;
    font-size: 13px;
}

.dk-cart-items {
    margin-top: 22px;
}

.dk-cart-item {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    gap: 14px;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e8e8e8;
}

.dk-cart-item-name {
    font-weight: 700;
    color: #222;
    text-decoration: none;
}

.dk-cart-item-name:hover {
    color: #b47b09;
}

.dk-cart-item-price {
    margin-top: 3px;
    font-size: 12px;
    color: #777;
}

.dk-cart-item-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dk-qty-button {
    width: 28px;
    height: 28px;
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 3px;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
}

.dk-cart-item-subtotal {
    min-width: 95px;
    text-align: right;
    font-weight: 700;
}

.dk-remove-item {
    border: 0;
    background: transparent;
    color: #999;
    cursor: pointer;
    font-size: 22px;
}

.dk-cart-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 22px;
    padding-top: 17px;
    border-top: 2px solid #111;
    font-size: 15px;
}

.dk-cart-summary strong {
    font-size: 22px;
    color: #b47b09;
}

.dk-cart-note {
    font-size: 12px;
    color: #777;
    line-height: 1.5;
    margin: 14px 0 18px;
}

.dk-whatsapp-button {
    width: 100%;
    border: 0;
    background: #25D366;
    color: #fff;
    padding: 14px 18px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

.dk-whatsapp-button:hover {
    filter: brightness(.94);
}

.dk-clear-cart {
    display: block;
    margin: 12px auto 0;
    border: 0;
    background: transparent;
    color: #777;
    text-decoration: underline;
    cursor: pointer;
    font-size: 12px;
}

.dk-empty-cart {
    text-align: center;
    padding: 45px 20px;
    color: #555;
    line-height: 1.7;
}

.dk-empty-cart span {
    color: #888;
    font-size: 13px;
}

body.dk-cart-open {
    overflow: hidden;
}

@media (max-width: 650px) {
    .dk-product-price {
        font-size: 25px;
    }

    .dk-floating-cart {
        right: 12px;
        bottom: 12px;
    }

    .dk-cart-modal {
        padding: 22px 17px;
    }

    .dk-cart-item {
        grid-template-columns: 1fr auto;
    }

    .dk-cart-item-controls {
        grid-column: 1;
    }

    .dk-cart-item-subtotal {
        grid-column: 2;
        grid-row: 1 / span 2;
    }

    .dk-remove-item {
        grid-column: 2;
        grid-row: 3;
        justify-self: end;
    }

    .dk-product-added {
        display: block;
        margin: 8px 0 0;
    }
}
