/* Digital Menu Complete CSS - Advanced Version */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.dmw-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    background: #f8f9fa;
    min-height: 100vh;
}

/* Header */
.dmw-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 30px 20px;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e0e0e0;
}

.dmw-title {
    color: #2E7D32;
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin: 0;
    font-weight: 700;
}

/* Categories */
.dmw-categories {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
    padding: 15px;
    background: white;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #e0e0e0;
    position: sticky;
    top: 10px;
    z-index: 90;
    background: rgba(255,255,255,0.98);
}

.dmw-cat-btn {
    padding: 12px 24px;
    border: 1px solid #e0e0e0;
    background: white;
    color: #333;
    border-radius: 40px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dmw-cat-btn:hover {
    background: #e8f5e9;
    border-color: #2E7D32;
}

.dmw-cat-btn.active {
    background: #2E7D32;
    color: white;
    border-color: #2E7D32;
    box-shadow: 0 4px 12px rgba(46,125,50,0.2);
}

/* Products Grid */
.dmw-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

/* Product Card */
.dmw-product-card {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.dmw-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(46,125,50,0.15);
    border-color: #2E7D32;
}

/* Product Image */
.dmw-product-image {
    width: 100%;
    height: 200px;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    background: #f5f5f5;
}

.dmw-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.dmw-product-card:hover .dmw-product-image img {
    transform: scale(1.05);
}

/* Product Header */
.dmw-product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 10px;
}

.dmw-product-title {
    font-size: 1.2rem;
    color: #333;
    margin: 0;
    font-weight: 700;
    line-height: 1.4;
    flex: 1;
}

.dmw-product-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: #2E7D32;
    background: #e8f5e9;
    padding: 6px 14px;
    border-radius: 30px;
    white-space: nowrap;
}

.dmw-product-description {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Disclaimer */
.dmw-product-disclaimer {
    margin: 10px 0 15px;
    padding: 12px 15px;
    background: #fff3e0;
    border-radius: 8px;
    border-left: 4px solid #ff9800;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.dmw-disclaimer-icon {
    font-size: 1.2rem;
}

.dmw-disclaimer-text {
    color: #663c00;
    line-height: 1.5;
    flex: 1;
}

/* Label Calculator */
.dmw-label-calculator {
    margin: 15px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #2E7D32;
}

.dmw-label-dimensions {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.dmw-dimension-input {
    flex: 1;
}

.dmw-dimension-input label {
    display: block;
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 5px;
    font-weight: 600;
}

.dmw-dimension-input input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
}

.dmw-dimension-input input:focus {
    outline: none;
    border-color: #2E7D32;
}

.dmw-sqm-price-info {
    margin-bottom: 15px;
    padding: 12px;
    background: white;
    border-radius: 8px;
    border: 1px solid #c8e6c9;
}

.dmw-base-sqm-price {
    font-weight: 700;
    color: #2E7D32;
    display: block;
    margin-bottom: 5px;
}

.dmw-min-charge {
    display: inline-block;
    font-weight: 600;
    color: #dc3545;
    background: #fff5f5;
    padding: 4px 12px;
    border-radius: 20px;
    margin-top: 5px;
    border: 1px solid #ffcdd2;
    font-size: 0.9rem;
}

.dmw-label-preview {
    margin-top: 15px;
    padding: 15px;
    background: #e8f5e9;
    border-radius: 8px;
    border: 2px solid #2E7D32;
    animation: fadeIn 0.3s ease;
}

.dmw-preview-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 600;
}

.dmw-preview-area {
    color: #1B5E20;
}

.dmw-preview-price {
    color: #1B5E20;
    font-size: 1.2rem;
    font-weight: 800;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Product Actions */
.dmw-product-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 15px;
}

.dmw-quantity {
    display: flex;
    align-items: center;
    border: 2px solid #e0e0e0;
    border-radius: 40px;
    overflow: hidden;
    background: white;
}

.dmw-qty-down, .dmw-qty-up {
    width: 44px;
    height: 44px;
    border: none;
    background: white;
    font-size: 22px;
    cursor: pointer;
    color: #2E7D32;
    font-weight: 700;
}

.dmw-qty-down:hover, .dmw-qty-up:hover {
    background: #e8f5e9;
}

.dmw-qty-input {
    width: 70px;
    height: 44px;
    border: none;
    border-left: 2px solid #e0e0e0;
    border-right: 2px solid #e0e0e0;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    background: white;
    color: #333;
    -moz-appearance: textfield;
}

.dmw-qty-input:focus {
    outline: none;
    background: #f1f8e9;
}

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

.dmw-add-to-cart {
    flex: 1;
    height: 44px;
    padding: 0 20px;
    background: #2E7D32;
    color: white;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(46,125,50,0.2);
}

.dmw-add-to-cart:hover {
    background: #1B5E20;
    transform: translateY(-2px);
}

/* Cart Button */
.dmw-cart-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #2E7D32;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 26px;
    box-shadow: 0 8px 20px rgba(46,125,50,0.3);
    z-index: 99;
    transition: all 0.3s ease;
    border: 3px solid white;
}

.dmw-cart-button:hover {
    transform: scale(1.1);
    background: #1B5E20;
}

.dmw-cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #dc3545;
    color: white;
    font-size: 13px;
    font-weight: bold;
    min-width: 26px;
    height: 26px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

/* Cart Modal */
.dmw-cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.dmw-cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.dmw-cart-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    background: white;
    border-radius: 20px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.dmw-cart-modal.open {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.dmw-cart-header {
    padding: 20px 25px;
    background: #2E7D32;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dmw-cart-header h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
}

.dmw-cart-close {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
}

.dmw-cart-close:hover {
    background: rgba(255,255,255,0.3);
}

/* Customer Info */
.dmw-customer-info {
    padding: 20px 25px;
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
}

.dmw-customer-field {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
}

.dmw-customer-field:focus {
    outline: none;
    border-color: #2E7D32;
    box-shadow: 0 0 0 3px rgba(46,125,50,0.1);
}

.dmw-customer-field:last-child {
    margin-bottom: 0;
}

/* Cart Items */
.dmw-cart-items {
    flex: 1;
    padding: 20px 25px;
    overflow-y: auto;
    max-height: 350px;
}

.dmw-cart-empty {
    text-align: center;
    padding: 40px 20px;
    color: #999;
}

.dmw-cart-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    gap: 15px;
}

.dmw-cart-item:last-child {
    border-bottom: none;
}

.dmw-cart-item-info {
    flex: 1;
}

.dmw-cart-item-info h4 {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    color: #333;
    font-weight: 700;
}

.dmw-cart-item-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dmw-item-dimensions {
    display: inline-block;
    background: #e3f2fd;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #1976D2;
    width: fit-content;
}

.dmw-item-unit {
    font-size: 0.9rem;
    color: #555;
    background: #f8f9fa;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    width: fit-content;
}

.dmw-cart-item-disclaimer {
    padding: 8px 12px;
    background: #fff3e0;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #663c00;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dmw-cart-item-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.dmw-cart-qty {
    display: flex;
    align-items: center;
    border: 2px solid #e0e0e0;
    border-radius: 30px;
    overflow: hidden;
}

.dmw-cart-qty-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: white;
    font-size: 18px;
    cursor: pointer;
    color: #2E7D32;
    font-weight: 700;
}

.dmw-cart-qty-btn:hover {
    background: #e8f5e9;
}

.dmw-qty-value {
    min-width: 40px;
    text-align: center;
    font-weight: 700;
}

.dmw-remove-item {
    width: 36px;
    height: 36px;
    border: 2px solid #dc3545;
    background: transparent;
    color: #dc3545;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
}

.dmw-remove-item:hover {
    background: #dc3545;
    color: white;
}

.dmw-cart-item-price {
    font-weight: 800;
    color: #2E7D32;
    font-size: 1.2rem;
    min-width: 100px;
    text-align: right;
}

/* Cart Footer */
.dmw-cart-footer {
    padding: 20px 25px;
    border-top: 2px solid #e0e0e0;
    background: #f8f9fa;
}

.dmw-cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 700;
}

.dmw-total-amount {
    color: #2E7D32;
    font-size: 1.5rem;
}

.dmw-send-whatsapp {
    width: 100%;
    padding: 16px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 10px;
    transition: all 0.2s;
}

.dmw-send-whatsapp:hover:not(:disabled) {
    background: #128C7E;
    transform: translateY(-2px);
}

.dmw-send-whatsapp:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.dmw-continue-shopping {
    width: 100%;
    padding: 14px;
    background: transparent;
    color: #2E7D32;
    border: 2px solid #2E7D32;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.dmw-continue-shopping:hover {
    background: #e8f5e9;
}

.dmw-clear-cart {
    width: 100%;
    padding: 12px;
    background: transparent;
    color: #dc3545;
    border: 1px solid #dc3545;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.95rem;
}

.dmw-clear-cart:hover {
    background: #dc3545;
    color: white;
}

/* Toast */
.dmw-toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: #2E7D32;
    color: white;
    padding: 14px 28px;
    border-radius: 40px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
    font-weight: 500;
    border: 2px solid white;
    animation: slideUp 0.3s ease;
}

.dmw-toast.show {
    display: block;
}

@keyframes slideUp {
    from { transform: translate(-50%, 100%); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
}

/* Empty State */
.dmw-empty {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.dmw-empty p {
    color: #666;
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .dmw-products {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .dmw-product-image {
        height: 150px;
    }
    
    .dmw-label-dimensions {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .dmw-products {
        grid-template-columns: 1fr;
    }
    
    .dmw-product-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .dmw-product-price {
        align-self: flex-start;
    }
    
    .dmw-product-actions {
        flex-direction: column;
    }
    
    .dmw-quantity {
        width: 100%;
    }
    
    .dmw-add-to-cart {
        width: 100%;
    }
    
    .dmw-cart-modal {
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
    
    .dmw-cart-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .dmw-cart-item-price {
        align-self: flex-end;
        margin-top: 10px;
    }
}

/* iOS Fixes */
@supports (-webkit-touch-callout: none) {
    .dmw-customer-field {
        font-size: 16px;
    }
    .dmw-qty-input {
        font-size: 16px;
    }
}

/* Add these enhanced form styles to your existing CSS */

/* ===== ENHANCED CUSTOMER FORM STYLES ===== */
.dmw-customer-info {
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 2px solid #e8f5e9;
    position: relative;
}

.dmw-customer-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2E7D32, #4CAF50, #2E7D32);
}

.dmw-customer-field {
    width: 100%;
    padding: 16px 20px;
    margin-bottom: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.dmw-customer-field:focus {
    outline: none;
    border-color: #2E7D32;
    box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.1), 0 4px 12px rgba(46, 125, 50, 0.1);
    transform: translateY(-2px);
}

.dmw-customer-field:hover {
    border-color: #2E7D32;
}

.dmw-customer-field:last-child {
    margin-bottom: 0;
}

.dmw-customer-field::placeholder {
    color: #999;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.dmw-customer-field:focus::placeholder {
    opacity: 0.7;
    transform: translateX(5px);
}

/* Form field icons */
#dmw-customer-name {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%232E7D32" stroke-width="2"><path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"/><circle cx="12" cy="7" r="4"/></svg>');
    background-repeat: no-repeat;
    background-position: 16px center;
    background-size: 20px;
    padding-left: 50px;
}

#dmw-customer-business {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%232E7D32" stroke-width="2"><rect x="2" y="7" width="20" height="14" rx="2" ry="2"/><path d="M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16"/></svg>');
    background-repeat: no-repeat;
    background-position: 16px center;
    background-size: 20px;
    padding-left: 50px;
}

#dmw-customer-email {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%232E7D32" stroke-width="2"><path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"/><polyline points="22,6 12,13 2,6"/></svg>');
    background-repeat: no-repeat;
    background-position: 16px center;
    background-size: 20px;
    padding-left: 50px;
}

#dmw-customer-phone {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%232E7D32" stroke-width="2"><rect x="5" y="2" width="14" height="20" rx="2" ry="2"/><line x1="12" y1="18" x2="12" y2="18"/></svg>');
    background-repeat: no-repeat;
    background-position: 16px center;
    background-size: 20px;
    padding-left: 50px;
}

/* Form field animations */
.dmw-customer-field {
    animation: slideInField 0.5s ease-out;
    animation-fill-mode: both;
}

.dmw-customer-field:nth-child(1) { animation-delay: 0.1s; }
.dmw-customer-field:nth-child(2) { animation-delay: 0.2s; }
.dmw-customer-field:nth-child(3) { animation-delay: 0.3s; }
.dmw-customer-field:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInField {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form section title */
.dmw-form-title {
    font-size: 1.2rem;
    color: #2E7D32;
    margin-bottom: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dmw-form-title::before {
    content: '👤';
    font-size: 1.4rem;
}

/* Responsive form */
@media (max-width: 768px) {
    .dmw-customer-field {
        padding: 14px 18px;
        font-size: 1rem;
        background-position: 14px center;
        padding-left: 45px;
    }
}

@media (max-width: 480px) {
    .dmw-customer-info {
        padding: 20px;
    }
    
    .dmw-customer-field {
        padding: 16px;
        padding-left: 45px;
        font-size: 16px;
        margin-bottom: 14px;
        background-position: 12px center;
        background-size: 18px;
    }
}

/* iOS specific fixes */
@supports (-webkit-touch-callout: none) {
    .dmw-customer-field {
        font-size: 16px;
    }
}

/* ===== LABEL PRICING - HIDE SQM INFO ===== */
.dmw-sqm-price-info {
    display: none !important;
}

/* Show only total price */
.dmw-label-preview {
    margin-top: 15px;
    padding: 12px 15px;
    background: #e8f5e9;
    border-radius: 8px;
    border: 2px solid #2E7D32;
    animation: fadeIn 0.3s ease;
}

.dmw-preview-total {
    font-size: 1rem;
    font-weight: 600;
    color: #1B5E20;
}

.dmw-preview-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1B5E20;
    margin-left: 8px;
}

.dmw-min-charge-note {
    margin-top: 8px;
    padding: 6px 12px;
    background: #fff3e0;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #e65100;
    text-align: center;
}

/* ===== CART MODAL ENHANCEMENTS ===== */
.dmw-cart-modal {
    max-width: 650px;
    border-radius: 24px;
}

.dmw-cart-header {
    padding: 20px 25px;
    background: linear-gradient(135deg, #2E7D32, #1B5E20);
}

.dmw-cart-header h3 {
    font-size: 1.5rem;
}

.dmw-cart-close {
    width: 44px;
    height: 44px;
    font-size: 28px;
}

.dmw-cart-footer {
    padding: 25px;
}

.dmw-send-whatsapp {
    padding: 18px;
    font-size: 1.2rem;
}

.dmw-continue-shopping {
    padding: 16px;
    font-size: 1.1rem;
}

.dmw-clear-cart {
    padding: 14px;
    font-size: 1rem;
}

/* Cart items styling */
.dmw-cart-item {
    padding: 20px 0;
}

.dmw-cart-item-info h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.dmw-item-dimensions {
    padding: 6px 14px;
    font-size: 0.95rem;
}

.dmw-item-unit {
    padding: 6px 14px;
    font-size: 0.95rem;
}

.dmw-cart-qty-btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
}

.dmw-remove-item {
    width: 40px;
    height: 40px;
    font-size: 20px;
}

.dmw-cart-item-price {
    font-size: 1.3rem;
    min-width: 120px;
}