.dc-section {
    margin-top: 25px;
    margin-bottom: 40px;
    max-width: 600px;
}

.dc-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 600;
    color: #5C6061;
}

.dc-header svg {
    flex-shrink: 0;
}

.dc-products {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dc-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border: 1px solid #e9e9e9;
    border-radius: 10px;
    padding: 15px;
}

.dc-card__image {
    flex-shrink: 0;
    width: 45px;
    height: 60px;
    overflow: hidden;
    border-radius: 5px;
}

.dc-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dc-card__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 0;
}

.dc-card__title {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: #1a0a1b;
    text-decoration: none;
    display: block;
}

.dc-card__title:hover {
    color: #ff5981;
}

.dc-card__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.dc-card__prices {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #1a0a1b;
}

.dc-card__prices del {
    color: #5c6061;
    font-size: 13px;
    font-weight: 400;
    order: 2;
}

.dc-card__prices ins {
    text-decoration: none;
    color: #ff5981;
    font-weight: 600;
    order: 1;
}

.dc-add-btn {
    background-color: #ff5981;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    text-transform: uppercase;
    transition: opacity 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    line-height: normal;
}

.dc-add-btn:hover {
    opacity: 0.85;
}

.dc-add-btn:disabled {
    cursor: default;
    opacity: 0.7;
}

.dc-add-btn--added {
    background: none;
    color: #b1b7b7;
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 1;
}

.dc-add-btn--added:hover {
    opacity: 1;
}

.dc-added-text {
    font-size: 13px;
    font-weight: 700;
    color: #b1b7b7;
}

/* Mobile styles */
@media (max-width: 768px) {
    .dc-section {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .dc-card__image {
        width: 85px;
        height: 114px;
    }

    .dc-card {
        align-items: stretch;
    }

    .dc-card__info {
        gap: 8px;
        justify-content: space-between;
    }

    .dc-card__title {
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        display: -webkit-box;
        overflow: hidden;
    }

    .dc-card__actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}
