.product-grid .price>div{
    gap:10px;
}

/* Discount percentage badge on product page */
.price-group .product-price-old-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 2px;
}

.price-group .product-price-old-group .discount-badge {
    display: inline-block;
    padding: 3px 10px;
    background: #e74c3c;
    color: #fff;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* Discount Table Styles */
.cactus-discount-table-wrapper {
    margin: 30px 0;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    /* border-radius: 12px; */
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.cactus-discount-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2c3e50;
    text-align: center;
}

.cactus-discount-subtitle {
    font-size: 14px;
    color: #6c757d;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 500;
}

.cactus-discount-table {
    background: white;
    margin-bottom: 15px;
    /* border-radius: 8px; */
    overflow: hidden;
}

.cactus-discount-table thead {
    background: rgb(35 82 169);
}

.cactus-discount-table thead th {
    font-weight: 600;
    font-size: 13px;
    padding: 15px 8px;
    color: white;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cactus-discount-table thead th small {
    display: block;
    font-size: 10px;
    margin-top: 3px;
    opacity: 0.9;
    text-transform: none;
    font-weight: 400;
}

.cactus-discount-table tbody td {
    padding: 15px 8px;
    vertical-align: middle;
    font-size: 14px;
    border-color: #e9ecef;
}

.cactus-discount-table tbody tr:hover {
    background-color: #f8f9fa;
    transition: background-color 0.2s ease;
}

.cactus-discount-table .original-price {
    color: #6c757d;
    text-decoration: line-through;
    font-size: 13px;
}

.cactus-discount-table .discount-badge {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, #2352a9 0%, #4c84ec 100%);
    color: white;
    border-radius: 20px;
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 2px 6px rgba(17, 153, 142, 0.3);
}

.cactus-discount-table .discounted-price {
    color: #e74c3c;
    font-size: 17px;
    font-weight: 700;
}

.cactus-discount-table .savings-amount {
    color: #27ae60;
    font-weight: 700;
    font-size: 14px;
}

.cactus-discount-note {
    text-align: center;
    margin: 15px 0 0 0;
    padding: 10px;
    background: rgba(255, 255, 255, 0.7);
    /* border-radius: 6px; */
}

.cactus-discount-note small {
    color: #495057;
}

.cactus-discount-note i {
    color: #667eea;
    margin-right: 5px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .cactus-discount-table-wrapper {
        padding: 15px;
        margin: 20px 0;
    }
    
    .cactus-discount-title {
        font-size: 18px;
    }
    
    .cactus-discount-subtitle {
        font-size: 12px;
    }
    
    .cactus-discount-table {
        font-size: 11px;
    }
    
    .cactus-discount-table thead th,
    .cactus-discount-table tbody td {
        padding: 10px 4px;
        font-size: 11px;
    }
    
    .cactus-discount-table thead th small {
        display: none;
    }
    
    .cactus-discount-table .discount-badge {
        padding: 4px 10px;
        font-size: 11px;
    }
    
    .cactus-discount-table .discounted-price {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .cactus-discount-table thead th,
    .cactus-discount-table tbody td {
        padding: 8px 2px;
        font-size: 10px;
    }
    
    .cactus-discount-table .discount-badge {
        padding: 3px 8px;
        font-size: 10px;
    }
}
