/* WooCommerce Cart Modules */

.custom-add-to-cart-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.custom-add-to-cart-button {
    padding: 12px 24px;
    background: var(--dsh-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-add-to-cart-button:hover {
    background: var(--dsh-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(193, 40, 49, 0.2);
}

/* Extra Info / Feature Comparison in Cart */
.dsh-extra-info {
    margin-top: 20px;
    border: 1px solid var(--dsh-border);
    border-radius: 12px;
    padding: 20px;
    background: var(--dsh-bg-light);
}

.dsh-info-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dsh-primary);
}

.dsh-info-title.inactive {
    color: var(--dsh-text-light);
}

.dsh-extra-info p {
    margin: 8px 0;
    font-size: 15px;
    line-height: 1.4;
}

.dsh-feature-muted {
    color: var(--dsh-text-light);
    opacity: 0.7;
}

/* Overlay & Status */
#info.dsh-waiting-message {
    padding-top: 24px;
    font-size: 20px;
    font-weight: 600;
    color: var(--dsh-dark);
    text-align: center;
}

#overlay.dsh-page-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(2px);
    z-index: 9999;
}
