/**
 * Stili Frontend per Prodotti Combo
 */

/* Griglia Combo */
.mppc-combo-grid {
    display: grid;
    gap: 30px;
    margin: 40px 0;
}

.mppc-columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.mppc-columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.mppc-columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Card Combo */
.mppc-combo-card {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.mppc-combo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border-color: #3b82f6;
}

/* Header Card */
.mppc-combo-header {
    position: relative;
    background: linear-gradient(135deg, #1C2949 0%, #0f1829 100%);
    padding: 20px;
    min-height: 120px;
}

.mppc-combo-thumbnail {
    margin-bottom: 15px;
}

.mppc-combo-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.mppc-combo-badge-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.mppc-combo-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.mppc-badge-combo {
    background: #fff;
    color: #1C2949;
}

.mppc-badge-combo .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

.mppc-badge-savings {
    background: #fff;
    color: #1C2949;
    font-weight: 800;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px #1C2949;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Body Card */
.mppc-combo-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.mppc-combo-title {
    margin: 0 0 15px;
    font-size: 22px;
    line-height: 1.3;
}

.mppc-combo-title a {
    color: #1f2937;
    text-decoration: none;
    transition: color 0.2s;
}

.mppc-combo-title a:hover {
    color: #3b82f6;
}

.mppc-combo-excerpt {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Preview Prodotti */
.mppc-combo-products-preview h4 {
    font-size: 14px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 12px;
}

.mppc-products-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mppc-product-item-preview {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.mppc-product-item-preview img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
}

.mppc-product-info {
    flex-grow: 1;
}

.mppc-product-name {
    display: block;
    font-size: 14px;
    color: #374151;
    font-weight: 500;
}

/* Prezzi */
.mppc-combo-pricing {
    margin: 20px 0;
    padding: 20px;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.mppc-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.mppc-price-label {
    color: #6b7280;
    font-size: 14px;
}

.mppc-price-original {
    color: #9ca3af;
    text-decoration: line-through;
    font-size: 16px;
}

.mppc-price-final-row {
    margin-bottom: 0;
    padding-top: 10px;
    border-top: 2px solid #e5e7eb;
}

.mppc-price-final {
    color: #1C2949;
    font-size: 28px;
    font-weight: 700;
}

/* Riga Risparmio nella pricing */
.mppc-savings-row {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 2px dashed #10b981;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    padding: 12px 15px;
    border-radius: 6px;
}

.mppc-savings-row .mppc-price-label {
    color: #059669;
    font-weight: 600;
}

.mppc-savings-value {
    color: #059669;
    font-size: 18px;
    font-weight: 700;
}

/* Box Risparmio */
.mppc-savings-box {
    margin-top: 15px;
    padding: 15px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.mppc-savings-icon {
    font-size: 32px;
}

.mppc-savings-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mppc-savings-text strong {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mppc-savings-amount {
    font-size: 24px;
    font-weight: 700;
}

.mppc-savings-percent {
    font-size: 16px;
    opacity: 0.9;
}

/* Actions */
.mppc-combo-actions {
    margin-top: auto;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mppc-add-to-cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px !important;
    background: #1C2949 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mppc-add-to-cart-btn:hover {
    background: #0f1829 !important;
    transform: scale(1.02);
}

.mppc-add-to-cart-btn:active {
    transform: scale(0.98);
}

.mppc-add-to-cart-btn .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
}

.mppc-add-to-cart-btn.loading {
    opacity: 0.6;
    pointer-events: none;
}

.mppc-add-to-cart-btn.disabled {
    background: #9ca3af !important;
    cursor: not-allowed;
}

.mppc-view-details {
    text-align: center;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.mppc-view-details:hover {
    color: #2563eb;
}

/* Combo Single */
.mppc-combo-single {
    max-width: 800px;
    margin: 40px auto;
}

/* Wrapper per combo singolo */
.mppc-shortcode-single-wrapper {
    max-width: 600px;
    margin: 30px auto;
}

.mppc-shortcode-single-wrapper .mppc-combo-card {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.mppc-combo-single .mppc-combo-body {
    padding: 35px;
}

.mppc-combo-single .mppc-combo-title {
    font-size: 32px;
    margin-bottom: 20px;
}

.mppc-combo-single .mppc-products-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mppc-combo-single .mppc-product-item-preview {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mppc-combo-single .mppc-product-item-preview img {
    width: 80px;
    height: 80px;
}

/* Carrello */
.mppc-combo-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #667eea;
    font-weight: 500;
}

.mppc-combo-badge .dashicons {
    color: #1C2949;
}

.mppc-savings {
    color: #10b981 !important;
    font-weight: 600 !important;
}

/* No Combos */
.mppc-no-combos {
    text-align: center;
    padding: 60px 20px;
    color: #6b7280;
    font-size: 18px;
}

/* Responsive */
@media (max-width: 1024px) {
    .mppc-columns-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mppc-columns-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mppc-combo-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .mppc-combo-single .mppc-products-list {
        grid-template-columns: 1fr;
    }
    
    .mppc-price-final {
        font-size: 24px;
    }
    
    .mppc-savings-amount {
        font-size: 20px;
    }
}

/* Animazioni */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mppc-combo-card {
    animation: fadeInUp 0.5s ease-out;
}

/* Loading State */
.mppc-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.6;
}

.mppc-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3b82f6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* === TEMPLATE SINGLE COMBO === */
.mppc-combo-single-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.mppc-combo-hero {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #1C2949 0%, #0f1829 100%);
    color: #fff;
    border-radius: 12px;
    margin-bottom: 40px;
}

.mppc-combo-badge-wrap {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.mppc-combo-main-title {
    font-size: 42px;
    margin: 0 0 15px;
    color: #fff;
}

.mppc-combo-lead {
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

.mppc-combo-main-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: start;
}

.mppc-combo-featured-image {
    margin-bottom: 30px;
}

.mppc-combo-featured-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.mppc-combo-description {
    font-size: 16px;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 40px;
}

.mppc-combo-products-section {
    margin-bottom: 40px;
}

.mppc-combo-products-section h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #1f2937;
}

.mppc-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.mppc-product-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s;
}

.mppc-product-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.mppc-product-image-wrap {
    margin-bottom: 15px;
}

.mppc-product-image-wrap img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.mppc-product-title {
    font-size: 16px;
    margin: 0 0 10px;
}

.mppc-product-title a {
    color: #1f2937;
    text-decoration: none;
}

.mppc-product-title a:hover {
    color: #3b82f6;
}

.mppc-product-excerpt {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 10px;
    line-height: 1.5;
}

.mppc-product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
}

.mppc-sku {
    font-size: 12px;
    color: #9ca3af;
}

.mppc-product-single-price {
    font-size: 16px;
    font-weight: 600;
    color: #3b82f6;
}

.mppc-view-product {
    display: inline-block;
    color: #3b82f6;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
}

.mppc-view-product:hover {
    color: #2563eb;
}

/* Sidebar Prezzi */
.mppc-combo-sidebar {
    position: sticky;
    top: 20px;
}

.mppc-pricing-card {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    overflow: hidden;
}

.mppc-pricing-card h3 {
    margin: 0 0 20px;
    font-size: 20px;
    color: #1f2937;
}

.mppc-pricing-details {
    margin-bottom: 20px;
}

.mppc-price-comparison {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e5e7eb;
}

.mppc-price-comparison .mppc-label {
    color: #6b7280;
    font-size: 14px;
}

.mppc-original-price {
    color: #9ca3af;
    text-decoration: line-through;
    font-size: 16px;
}

.mppc-price-combo-main {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 15px 0;
    border-bottom: 2px solid #e5e7eb;
}

.mppc-price-combo-main .mppc-label {
    color: #6b7280;
    font-size: 14px;
}

.mppc-final-price-big {
    font-size: 36px;
    font-weight: 700;
    color: #3b82f6;
}

/* Prodotto Omaggio */
.mppc-gift-product-highlight {
    margin-top: 15px;
    padding: 15px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 8px;
    color: #fff;
}

.mppc-gift-badge {
    display: inline-block;
    padding: 4px 12px;
    background: #fff;
    color: #f59e0b;
    font-weight: 700;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 8px;
}

.mppc-gift-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mppc-gift-details strong {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mppc-gift-name {
    font-size: 16px;
    font-weight: 600;
}

.mppc-savings-highlight {
    margin-top: 15px;
    padding: 15px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    border-radius: 8px;
}

.mppc-savings-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mppc-savings-emoji {
    font-size: 32px;
}

.mppc-savings-big {
    font-size: 24px;
    font-weight: 700;
    margin-top: 5px;
}

.mppc-percentage {
    font-size: 18px;
    opacity: 0.9;
}

.mppc-purchase-section {
    margin: 20px 0;
    padding: 0 5px;
}

.mppc-btn-large {
    width: 100%;
    padding: 14px 20px !important;
    font-size: 16px !important;
    box-sizing: border-box !important;
}

.mppc-secure-notice {
    text-align: center;
    color: #6b7280;
    font-size: 13px;
    margin: 10px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.mppc-secure-notice .dashicons {
    color: #10b981;
}

.mppc-info-list {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.mppc-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: #374151;
}

.mppc-info-item .dashicons {
    color: #10b981;
    flex-shrink: 0;
}

/* === TEMPLATE ARCHIVE COMBO === */
.mppc-archive-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.mppc-archive-header {
    text-align: center;
    margin-bottom: 40px;
}

.mppc-archive-title {
    font-size: 42px;
    margin: 0 0 15px;
    color: #1f2937;
}

.mppc-archive-subtitle {
    font-size: 18px;
    color: #6b7280;
    margin: 0;
}

.mppc-archive-description {
    font-size: 16px;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
}

.mppc-archive-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 15px 20px;
    background: #f9fafb;
    border-radius: 8px;
}

.mppc-results-count {
    font-size: 16px;
    color: #374151;
}

.mppc-filter-select {
    padding: 8px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
}

.mppc-no-results {
    text-align: center;
    padding: 80px 20px;
    color: #6b7280;
    font-size: 18px;
}

/* Paginazione */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
}

.pagination .page-numbers {
    padding: 10px 16px;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    color: #374151;
    text-decoration: none;
    transition: all 0.2s;
}

.pagination .page-numbers:hover {
    background: #3b82f6;
    color: #fff;
    border-color: #3b82f6;
}

/* Stili Prodotto Omaggio */
.mppc-product-card.mppc-product-gift {
    position: relative;
    border: 3px solid #f59e0b;
    background: linear-gradient(135deg, #fff 0%, #fef3c7 100%);
}

.mppc-gift-badge-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 12px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.mppc-product-single-price.mppc-gift-price {
    color: #f59e0b;
    font-weight: 700;
    font-size: 18px;
}

/* Stili item gift nella lista preview */
.mppc-product-item-preview.mppc-gift-item {
    position: relative;
    border: 2px solid #f59e0b;
    background: #fef3c7;
}

.mppc-gift-badge-small {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #f59e0b;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    z-index: 10;
}

.mppc-gift-label {
    display: block;
    color: #f59e0b;
    font-weight: 700;
    font-size: 11px;
    margin-top: 3px;
}

.pagination .page-numbers.current {
    background: #3b82f6;
    color: #fff;
    border-color: #3b82f6;
}

/* Responsive Templates */
@media (max-width: 1024px) {
    .mppc-combo-main-content {
        grid-template-columns: 1fr;
    }
    
    .mppc-combo-sidebar {
        position: static;
    }
    
    .mppc-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .mppc-combo-main-title {
        font-size: 32px;
    }
    
    .mppc-archive-title {
        font-size: 32px;
    }
    
    .mppc-archive-toolbar {
        flex-direction: column;
        gap: 15px;
    }
    
    .mppc-products-grid {
        grid-template-columns: 1fr;
    }
    
    .mppc-final-price-big {
        font-size: 28px;
    }
    
    /* Stack verticale per mobile */
    .mppc-shortcode-single-wrapper {
        max-width: 100%;
    }
    
    .mppc-columns-2,
    .mppc-columns-3,
    .mppc-columns-4 {
        grid-template-columns: 1fr;
    }
}

/* === COMBO QUANTITÀ === */
.mppc-combo-quantity-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Badge quantità */
.mppc-badge-quantity {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #fff;
}

.mppc-badge-discount {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #fff;
}

/* Box Descrizione Breve */
.mppc-combo-excerpt-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid #3498db;
    border-radius: 8px;
    padding: 25px 30px;
    margin: 30px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.mppc-excerpt-content {
    font-size: 16px;
    line-height: 1.6;
    color: #2c3e50;
}

.mppc-excerpt-content p {
    margin: 0;
}

.mppc-excerpt-content p:not(:last-child) {
    margin-bottom: 12px;
}

/* Risparmio nel box descrizione */
.mppc-savings-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px dashed #27ae60;
}

.mppc-combo-body > .mppc-savings-highlight {
    margin: 15px 0;
    padding: 15px 20px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 8px;
    border-top: none;
    border-left: 4px solid #27ae60;
}

.mppc-savings-highlight strong {
    color: #27ae60;
    font-size: 16px;
}

.mppc-savings-amount {
    background: #27ae60;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 15px;
}

/* Info sconti */
.mppc-discount-info {
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
}

.mppc-discount-info h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 24px;
    color: #2c3e50;
}

.mppc-discount-levels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.mppc-discount-level-card {
    background: #fff;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
}

.mppc-discount-level-card.mppc-level-active {
    border-color: #3498db;
    background: linear-gradient(135deg, #e7f3ff 0%, #fff 100%);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.2);
    transform: scale(1.05);
}

.mppc-level-badge {
    display: inline-block;
    background: #6c757d;
    color: #fff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.mppc-level-active .mppc-level-badge {
    background: #3498db;
}

.mppc-level-discount {
    font-size: 36px;
    font-weight: 700;
    color: #27ae60;
    margin: 10px 0;
}

.mppc-level-conditions {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #dee2e6;
}

.mppc-condition-item {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin: 8px 0;
    font-size: 13px;
    color: #666;
}

.mppc-condition-item .dashicons {
    color: #27ae60;
    font-size: 16px;
    width: 16px;
    height: 16px;
}

/* Riepilogo selezione */
.mppc-quantity-summary {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border: 3px solid #3498db;
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.mppc-summary-content h4 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 20px;
    color: #2c3e50;
}

.mppc-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.mppc-summary-row:last-child {
    border-bottom: none;
}

.mppc-summary-row.mppc-total-row {
    border-top: 2px solid #3498db;
    padding-top: 15px;
    margin-top: 10px;
    font-size: 18px;
}

.mppc-summary-row.mppc-discount-row {
    color: #27ae60;
    font-weight: 600;
}

.mppc-discount-value {
    color: #27ae60;
    font-size: 16px;
}

.mppc-final-price {
    font-size: 24px;
    color: #e74c3c;
}

.mppc-summary-savings {
    background: #d4edda;
    color: #155724;
    padding: 12px;
    border-radius: 6px;
    margin-top: 15px;
    text-align: center;
    font-size: 15px;
}

.mppc-summary-savings strong {
    font-size: 18px;
}

/* Griglia prodotti quantità */
.mppc-products-section {
    margin-top: 40px;
}

.mppc-products-section h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.mppc-products-section .description {
    color: #666;
    margin-bottom: 25px;
}

.mppc-quantity-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.mppc-quantity-product-card {
    background: #fff;
    border: 2px solid #dee2e6;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
}

.mppc-quantity-product-card:hover {
    border-color: #3498db;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.15);
}

/* Evidenziazione errore */
.mppc-quantity-product-card.mppc-error-highlight {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2);
    animation: shake 0.5s;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

/* Badge condizionante */
.mppc-conditional-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(243, 156, 18, 0.3);
}

.mppc-conditional-badge .dashicons {
    font-size: 14px;
    width: 14px;
    height: 14px;
}

/* Immagine prodotto */
.mppc-product-image {
    position: relative;
    width: 100%;
    height: 220px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mppc-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Info prodotto */
.mppc-product-info {
    padding: 20px;
}

.mppc-product-info h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
    color: #2c3e50;
    line-height: 1.4;
}

.mppc-product-sku {
    font-size: 12px;
    color: #999;
    margin-bottom: 8px;
}

.mppc-product-price {
    font-size: 18px;
    font-weight: 700;
    color: #27ae60;
    margin: 12px 0;
}

/* Varianti */
.mppc-product-variations {
    margin: 15px 0;
}

.mppc-variation-select {
    margin-bottom: 10px;
}

.mppc-variation-select label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #555;
}

.mppc-variation-dropdown {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    background: #fff;
    cursor: pointer;
}

.mppc-variation-dropdown:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

/* Opzioni disabilitate nei dropdown varianti */
.mppc-variation-dropdown option:disabled,
.mppc-multi-variant-select option:disabled {
    color: #ccc;
    font-style: italic;
}

/* Selettore quantità */
.mppc-quantity-selector {
    margin-top: 15px;
}

.mppc-quantity-selector label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #555;
}

.mppc-quantity-input {
    display: flex;
    align-items: center;
    gap: 0;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

.mppc-quantity-input button {
    flex: 0 0 40px;
    height: 42px;
    border: none;
    background: #f8f9fa;
    color: #2c3e50;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.mppc-quantity-input button:hover {
    background: #3498db;
    color: #fff;
}

.mppc-quantity-input button:active {
    transform: scale(0.95);
}

.mppc-qty-value {
    flex: 1;
    text-align: center;
    border: none;
    font-size: 16px;
    font-weight: 600;
    padding: 10px;
    width: 60px;
    -moz-appearance: textfield;
}

.mppc-qty-value::-webkit-outer-spin-button,
.mppc-qty-value::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.mppc-qty-value:focus {
    outline: none;
}

/* Pulsante aggiungi */
.mppc-add-combo-button {
    width: 100%;
    padding: 16px 24px;
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.mppc-add-combo-button:hover:not(:disabled) {
    background: linear-gradient(135deg, #229954 0%, #1e8449 100%) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(39, 174, 96, 0.4);
}

.mppc-add-combo-button:disabled {
    background: #95a5a6 !important;
    color: #fff !important;
    cursor: not-allowed;
    box-shadow: none;
}

.mppc-add-combo-button.loading {
    background: #f39c12 !important;
    color: #fff !important;
}

.mppc-add-combo-button.added {
    background: #27ae60 !important;
    color: #fff !important;
}

/* Link "Configura Combo" per combo quantity */
a.mppc-add-to-cart-btn.mppc-goto-single {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%) !important;
    color: #fff !important;
    text-decoration: none !important;
    padding: 12px 24px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    transition: all 0.3s !important;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

a.mppc-add-to-cart-btn.mppc-goto-single:hover {
    background: linear-gradient(135deg, #2980b9 0%, #1f6aa5 100%) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(52, 152, 219, 0.4);
}

a.mppc-add-to-cart-btn.mppc-goto-single .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

.mppc-add-combo-button .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
}

/* Badge carrello */
.mppc-quantity-badge {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
}

.mppc-discount-badge {
    background: #27ae60;
    color: #fff;
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: 700;
    margin-left: 5px;
}

/* Responsive */
@media (max-width: 1024px) {
    .mppc-discount-levels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mppc-quantity-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

@media (max-width: 768px) {
    .mppc-discount-levels-grid {
        grid-template-columns: 1fr;
    }
    
    .mppc-quantity-products-grid {
        grid-template-columns: 1fr;
    }
    
    .mppc-product-image {
        height: 180px;
    }
    
    .mppc-quantity-summary {
        padding: 20px;
    }
    
    .mppc-final-price {
        font-size: 20px;
    }
}

/* Modale Varianti */
.mppc-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
}

.mppc-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.mppc-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    margin: 5vh auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.mppc-modal-header {
    padding: 20px 30px;
    border-bottom: 2px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mppc-modal-header h3 {
    margin: 0;
    font-size: 24px;
    color: #1C2949;
}

.mppc-modal-close {
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #6b7280;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
}

.mppc-modal-close:hover {
    color: #1C2949;
}

.mppc-modal-body {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
}

.mppc-modal-product {
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.mppc-modal-product.mppc-modal-error {
    border-color: #e74c3c;
    background: #fef2f2;
}

.mppc-modal-product-header {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.mppc-modal-product-header img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.mppc-modal-product-header > div {
    flex: 1;
}

.mppc-modal-product-header h4 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #1C2949;
}

/* Controlli quantità nella modale */
.mppc-modal-qty-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mppc-modal-qty-control label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin: 0;
}

.mppc-modal-qty-input {
    display: flex;
    align-items: center;
    gap: 0;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.mppc-modal-qty-minus,
.mppc-modal-qty-plus {
    background: #f3f4f6;
    border: none;
    width: 36px;
    height: 36px;
    font-size: 18px;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mppc-modal-qty-minus:hover,
.mppc-modal-qty-plus:hover {
    background: #00853D;
    color: #fff;
}

.mppc-modal-qty-value {
    width: 50px;
    height: 36px;
    border: none;
    border-left: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #1C2949;
    -moz-appearance: textfield;
}

.mppc-modal-qty-value::-webkit-outer-spin-button,
.mppc-modal-qty-value::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.mppc-modal-qty-value:focus {
    outline: none;
}

.mppc-modal-qty {
    color: #6b7280;
    font-size: 14px;
}

.mppc-modal-product-info {
    flex: 1;
}

.mppc-modal-product-price {
    font-size: 16px;
    font-weight: 700;
    color: #00853D;
    margin-bottom: 10px;
}

.mppc-modal-product-price del {
    color: #9ca3af;
    font-weight: 400;
    font-size: 14px;
    margin-right: 5px;
}

.mppc-modal-product-price ins {
    text-decoration: none;
    background: none;
}

.mppc-modal-quantities {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mppc-modal-quantity-item {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 15px;
    transition: all 0.3s;
}

.mppc-modal-quantity-item.mppc-modal-error {
    border-color: #e74c3c;
    background: #fef2f2;
}

.mppc-modal-quantity-label {
    font-weight: 700;
    color: #1C2949;
    margin-bottom: 12px;
    font-size: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e5e7eb;
}

.mppc-modal-product-variants {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.mppc-modal-variant-select label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #374151;
    font-size: 14px;
}

.mppc-modal-variant-dropdown {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.2s;
}

.mppc-modal-variant-dropdown:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.mppc-modal-footer {
    padding: 20px 30px;
    border-top: 2px solid #e5e7eb;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.mppc-modal-btn {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.mppc-modal-btn-cancel {
    background: #e5e7eb;
    color: #374151;
}

.mppc-modal-btn-cancel:hover {
    background: #d1d5db;
}

.mppc-modal-btn-confirm {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: #fff;
}

.mppc-modal-btn-confirm:hover {
    background: linear-gradient(135deg, #229954 0%, #1e8449 100%);
}

body.mppc-modal-open {
    overflow: hidden;
}

/* ===== SELETTORI VARIANTI MULTIPLI (inline nella pagina) ===== */
.mppc-multi-variants-container {
    margin-top: 15px;
    padding: 12px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #0ea5e9;
    border-radius: 10px;
    box-sizing: border-box;
    overflow: hidden;
}

.mppc-multi-variants-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(14, 165, 233, 0.3);
    color: #0369a1;
    font-weight: 600;
    font-size: 13px;
}

.mppc-multi-variants-header .dashicons {
    color: #0ea5e9;
    font-size: 16px;
    width: 16px;
    height: 16px;
}

.mppc-multi-variants-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mppc-multi-variant-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.2s;
    box-sizing: border-box;
}

.mppc-multi-variant-item:hover {
    border-color: #0ea5e9;
    box-shadow: 0 2px 8px rgba(14, 165, 233, 0.15);
}

.mppc-multi-variant-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 13px;
    color: #374151;
}

.mppc-unit-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.mppc-multi-variant-selects {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.mppc-multi-variant-select-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}

.mppc-multi-variant-select-wrapper label {
    font-size: 11px;
    color: #6b7280;
    font-weight: 500;
    line-height: 1.3;
}

.mppc-multi-variant-select {
    padding: 8px 10px;
    border: 1px solid #d1d5db;
    border-radius: 5px;
    font-size: 13px;
    width: 100%;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s;
    box-sizing: border-box;
}

.mppc-multi-variant-select:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 2px rgba(14, 165, 233, 0.2);
}

.mppc-multi-variant-select:hover {
    border-color: #9ca3af;
}

/* Responsive per selettori multipli */
@media (max-width: 768px) {
    .mppc-multi-variants-container {
        padding: 8px;
    }
    
    .mppc-multi-variant-item {
        padding: 8px;
    }
    
    .mppc-multi-variant-select {
        padding: 10px;
        font-size: 14px;
    }
}

/* ===== RIEPILOGO ORDINE DETTAGLIATO ===== */
.mppc-order-summary-section {
    margin-top: 30px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.mppc-summary-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
}

.mppc-summary-header .dashicons {
    font-size: 28px;
    width: 28px;
    height: 28px;
    color: #3b82f6;
}

.mppc-summary-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
}

.mppc-summary-products {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.mppc-summary-product-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.2s;
}

.mppc-summary-product-item:hover {
    border-color: #3b82f6;
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.1);
}

.mppc-summary-product-image {
    position: relative;
    flex-shrink: 0;
}

.mppc-summary-product-image img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.mppc-summary-qty-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.mppc-summary-product-details {
    flex: 1;
    min-width: 0;
}

.mppc-summary-product-name {
    font-weight: 600;
    font-size: 14px;
    color: #1e293b;
    margin-bottom: 6px;
    line-height: 1.3;
}

.mppc-summary-product-variants {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.mppc-variant-tag {
    display: inline-block;
    padding: 3px 8px;
    background: #e0f2fe;
    color: #0369a1;
    font-size: 11px;
    font-weight: 500;
    border-radius: 4px;
}

.mppc-variant-tag.mppc-warning {
    background: #fef3c7;
    color: #92400e;
}

.mppc-summary-product-prices {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    flex-shrink: 0;
}

.mppc-price-original {
    font-size: 13px;
    color: #94a3b8;
    text-decoration: line-through;
}

.mppc-price-discounted {
    font-size: 16px;
    font-weight: 700;
    color: #16a34a;
}

.mppc-price-normal {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
}

/* Totali */
.mppc-summary-totals {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 20px;
}

.mppc-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.mppc-summary-row:not(:last-child) {
    border-bottom: 1px solid #f1f5f9;
}

.mppc-subtotal-row span:first-child {
    color: #64748b;
    font-size: 14px;
}

.mppc-subtotal-row span:last-child {
    color: #64748b;
    font-size: 14px;
}

.mppc-discount-info-row .mppc-discount-badge {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 13px;
}

.mppc-savings-row .mppc-savings-value {
    color: #16a34a;
    font-weight: 700;
    font-size: 15px;
}

.mppc-total-final-row {
    padding-top: 12px !important;
    margin-top: 8px;
    border-top: 2px solid #e2e8f0 !important;
}

.mppc-total-final-row span:first-child {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
}

.mppc-total-final-row .mppc-total-value {
    font-size: 22px;
    font-weight: 800;
    color: #1e293b;
}

/* Pulsante */
.mppc-summary-actions {
    text-align: center;
}

.mppc-add-combo-button-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 400px;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 700;
    color: #fff !important;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%) !important;
    border: none !important;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mppc-add-combo-button-large:hover:not(:disabled) {
    background: linear-gradient(135deg, #229954 0%, #1e8449 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

.mppc-add-combo-button-large:disabled,
.mppc-add-combo-button-large.mppc-btn-disabled {
    background: linear-gradient(135deg, #94a3b8 0%, #64748b 100%) !important;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.mppc-add-combo-button-large .dashicons {
    font-size: 22px;
    width: 22px;
    height: 22px;
}

/* Responsive riepilogo */
@media (max-width: 768px) {
    .mppc-order-summary-section {
        padding: 15px;
        margin-top: 20px;
    }
    
    .mppc-summary-product-item {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .mppc-summary-product-details {
        flex: 1 1 calc(100% - 80px);
    }
    
    .mppc-summary-product-prices {
        width: 100%;
        flex-direction: row;
        justify-content: flex-end;
        gap: 10px;
        padding-top: 10px;
        border-top: 1px dashed #e2e8f0;
    }
    
    .mppc-add-combo-button-large {
        padding: 14px 24px;
        font-size: 16px;
    }
}
